* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --bg-color: #0a0e27;
    --card-bg: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-color: #48bb78;
    --hover-color: #805ad5;
    --border-color: #2d3748;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--bg-color) 0%, #1a1f3a 100%);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* App Loader */
.app-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
    visibility: visible;
}

.app-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    animation: loaderFadeIn 0.5s ease-out;
}

.loader-logo {
    margin-bottom: 30px;
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.6));
}

.loader-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    animation: textGlow 2s ease-in-out infinite;
    text-transform: uppercase;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    animation: progressLoad 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
}

.loader-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes loaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.9));
    }
}

@keyframes textGlow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.8));
    }
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .loader-logo-img {
        width: 100px;
    }
    
    .loader-text {
        font-size: 22px;
        letter-spacing: 5px;
    }
    
    .loader-progress {
        width: 180px;
    }
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto;
    touch-action: none;
}

/* Top Right Logo */
.top-logo {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.top-logo.animate-in {
    opacity: 1;
    transform: scale(1);
}

.top-logo .logo-svg {
    width: 60px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.top-logo .logo-svg:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.5));
}

@media (max-width: 768px) {
    .top-logo {
        top: 15px;
        right: 15px;
    }
    
    .top-logo .logo-svg {
        width: 50px;
    }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-card {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.profile-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.profile-image {
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card.animate-in .profile-image {
    opacity: 1;
    transform: scale(1);
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4),
                0 0 20px rgba(118, 75, 162, 0.3),
                inset 0 0 20px rgba(102, 126, 234, 0.1);
    animation: photoGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5),
                0 0 30px rgba(118, 75, 162, 0.4),
                inset 0 0 25px rgba(102, 126, 234, 0.15);
}

@keyframes photoGlow {
    0%, 100% {
        border-color: var(--primary-color);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4),
                    0 0 20px rgba(118, 75, 162, 0.3),
                    inset 0 0 20px rgba(102, 126, 234, 0.1);
    }
    50% {
        border-color: var(--secondary-color);
        box-shadow: 0 10px 30px rgba(118, 75, 162, 0.5),
                    0 0 25px rgba(102, 126, 234, 0.4),
                    inset 0 0 20px rgba(118, 75, 162, 0.15);
    }
}

.name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.profile-card.animate-in .name {
    opacity: 1;
    transform: translateY(0);
}

.nickname {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease-out 0.25s, transform 0.8s ease-out 0.25s;
    letter-spacing: 1px;
}

.profile-card.animate-in .nickname {
    opacity: 1;
    transform: translateY(0);
}

.bio {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.profile-card.animate-in .bio {
    opacity: 1;
    transform: translateY(0);
}

.description {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.stats-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease, transform 0.6s ease-out, opacity 0.6s ease-out;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: borderGlitch 3s ease-in-out infinite;
}

.stat-card:hover {
    animation: borderGlitchHover 0.8s ease-in-out infinite;
}

.stats-section.animate-in .stat-card {
    opacity: 1;
    transform: scale(1);
}

.stats-section.animate-in .stat-card:nth-child(1) {
    transition-delay: 0.3s;
}

.stats-section.animate-in .stat-card:nth-child(2) {
    transition-delay: 0.4s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
    z-index: 0;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Section Titles */
.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.animate-in .section-title {
    opacity: 1;
    transform: translateY(0);
}

.title-text {
    position: relative;
    z-index: 1;
}

.title-extension {
    flex: 1;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color),
        transparent
    );
    background-size: 200% 100%;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
    animation: extensionFlow 3s ease-in-out infinite;
    position: relative;
}

.title-extension::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8),
                0 0 20px rgba(118, 75, 162, 0.5);
    animation: extensionDot 2s ease-in-out infinite;
}

.links-section.animate-in .section-title {
    transition-delay: 0.45s;
}

.links-section.animate-in .title-extension {
    opacity: 0.6;
    transform: scaleX(1);
}

.info-section.animate-in .section-title {
    transition-delay: 0.65s;
}

.info-section.animate-in .title-extension {
    opacity: 0.6;
    transform: scaleX(1);
    transition-delay: 0.8s;
}

.support-section.animate-in .section-title {
    transition-delay: 1.05s;
}

.support-section.animate-in .title-extension {
    opacity: 0.6;
    transform: scaleX(1);
    transition-delay: 1.2s;
}

@keyframes extensionFlow {
    0%, 100% {
        background-position: 0% 0;
    }
    50% {
        background-position: 100% 0;
    }
}

@keyframes extensionDot {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.8),
                    0 0 20px rgba(118, 75, 162, 0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.3);
        box-shadow: 0 0 15px rgba(102, 126, 234, 1),
                    0 0 30px rgba(118, 75, 162, 0.7),
                    0 0 40px rgba(102, 126, 234, 0.4);
    }
}

/* Links Section */
.links-section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.links-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease, transform 0.5s ease-out, opacity 0.5s ease-out;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: borderGlitch 4s ease-in-out infinite;
}

.link-card:hover {
    animation: borderGlitchHover 0.6s ease-in-out infinite;
}

.links-section.animate-in .link-card {
    opacity: 1;
    transform: translateX(0);
}

.links-section.animate-in .link-card:nth-child(1) { transition-delay: 0.5s; }
.links-section.animate-in .link-card:nth-child(2) { transition-delay: 0.6s; }
.links-section.animate-in .link-card:nth-child(3) { transition-delay: 0.7s; }
.links-section.animate-in .link-card:nth-child(4) { transition-delay: 0.8s; }
.links-section.animate-in .link-card:nth-child(5) { transition-delay: 0.9s; }
.links-section.animate-in .link-card:nth-child(6) { transition-delay: 1.0s; }

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.15), transparent);
    transition: left 0.5s ease;
    z-index: 0;
    border-radius: 14px;
}

.link-card:hover::before {
    left: 100%;
}

.link-card > * {
    position: relative;
    z-index: 1;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, var(--card-bg), rgba(102, 126, 234, 0.05));
}

.link-icon {
    font-size: 32px;
    margin-right: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.link-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.link-card.instagram .link-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.link-card.instagram .link-icon svg {
    fill: white;
}

.link-card.tiktok .link-icon {
    background: #000000;
}

.link-card.tiktok .link-icon svg {
    fill: white;
}


.link-content {
    flex: 1;
    text-align: left;
}

.link-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.link-content p {
    font-size: 13px;
    color: var(--text-secondary);
}

.link-arrow {
    font-size: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    margin-left: 12px;
}

.link-card:hover .link-arrow {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Info Section */
.info-section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
}

.info-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.info-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    line-height: 1.8;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out 0.7s, transform 0.6s ease-out 0.7s;
    position: relative;
    overflow: hidden;
    animation: borderGlitch 5s ease-in-out infinite;
}

.info-section.animate-in .info-card:hover {
    animation: borderGlitchHover 0.7s ease-in-out infinite;
}

.info-section.animate-in .info-card {
    opacity: 1;
    transform: scale(1);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Business Section */
.business-section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
}

.business-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.business-section.animate-in .section-title {
    transition-delay: 0.95s;
}

.business-section.animate-in .title-extension {
    opacity: 0.6;
    transform: scaleX(1);
    transition-delay: 1.1s;
}

.business-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    text-align: center;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    animation: borderGlitch 4s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out 1.0s, transform 0.6s ease-out 1.0s;
}

.business-section.animate-in .business-card {
    opacity: 1;
    transform: scale(1);
}

.business-card:hover {
    animation: borderGlitchHover 0.7s ease-in-out infinite;
}

.business-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.business-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 12px;
}

.business-form {
    margin-top: 25px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(102, 126, 234, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    animation: messageSlideIn 0.4s ease-out;
}

.form-message.success {
    background: rgba(72, 187, 120, 0.1);
    border: 2px solid var(--accent-color);
}

.form-message.error {
    background: rgba(245, 101, 101, 0.1);
    border: 2px solid rgba(245, 101, 101, 0.5);
}

.message-icon {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-message.success .message-icon {
    color: var(--accent-color);
}

.form-message.error .message-icon {
    color: rgba(245, 101, 101, 1);
}

.form-message p {
    color: var(--text-primary);
    margin: 8px 0;
    font-size: 15px;
}

.message-note {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px !important;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Support Section */
.support-section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.8s, transform 0.8s ease-out 0.8s;
}

.support-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.support-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.support-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease, transform 0.6s ease-out, opacity 0.6s ease-out;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: borderGlitch 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-card:hover {
    animation: borderGlitchHover 0.5s ease-in-out infinite;
}

.support-section.animate-in .support-card {
    opacity: 1;
    transform: scale(1);
}

.support-section.animate-in .support-card:nth-child(1) {
    transition-delay: 0.9s;
}

.support-section.animate-in .support-card:nth-child(2) {
    transition-delay: 1.0s;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
    z-index: 0;
}

.support-card:hover::before {
    opacity: 1;
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.support-card > * {
    position: relative;
    z-index: 1;
}

.support-icon {
    font-size: 40px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.support-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.support-card p {
    font-size: 13px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    color: var(--text-secondary);
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.8s ease-out 1.1s;
}

.footer.animate-in {
    opacity: 0.6;
}

.footer .domain {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderGlitch {
    0%, 100% {
        border-color: var(--primary-color);
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
    }
    25% {
        border-color: var(--secondary-color);
        box-shadow: 0 0 8px rgba(118, 75, 162, 0.4);
    }
    50% {
        border-color: var(--primary-color);
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
    }
    75% {
        border-color: var(--secondary-color);
        box-shadow: 0 0 8px rgba(118, 75, 162, 0.4);
    }
}

@keyframes borderGlitchHover {
    0%, 100% {
        border-color: var(--primary-color);
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.6), 
                    0 0 20px rgba(102, 126, 234, 0.3),
                    0 0 30px rgba(102, 126, 234, 0.1);
    }
    25% {
        border-color: var(--secondary-color);
        box-shadow: 0 0 12px rgba(118, 75, 162, 0.7), 
                    0 0 22px rgba(118, 75, 162, 0.4),
                    0 0 32px rgba(118, 75, 162, 0.2);
    }
    50% {
        border-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.8), 
                    0 0 25px rgba(118, 75, 162, 0.4),
                    0 0 35px rgba(102, 126, 234, 0.2);
    }
    75% {
        border-color: var(--secondary-color);
        box-shadow: 0 0 12px rgba(118, 75, 162, 0.7), 
                    0 0 22px rgba(118, 75, 162, 0.4),
                    0 0 32px rgba(118, 75, 162, 0.2);
    }
}

/* Confirmation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4),
                0 0 30px rgba(118, 75, 162, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
    z-index: 10001;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.modal-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 120px;
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.modal-btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.modal-btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Donate Modal */
.donate-modal {
    max-width: 500px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(102, 126, 234, 0.1);
    transform: rotate(90deg);
}

.donate-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 14px;
}

.crypto-wallets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wallet-item {
    background: rgba(102, 126, 234, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.wallet-item:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.crypto-icon {
    font-size: 24px;
}

.crypto-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.wallet-address-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.wallet-address {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--text-primary);
    word-break: break-all;
    background: transparent;
    border: none;
    padding: 0;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
}

.copy-btn.copied .copy-text {
    display: none;
}

.copy-btn.copied::after {
    content: 'Copied!';
}

.copy-icon {
    font-size: 16px;
}

.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-bg);
    border: 2px solid var(--accent-color);
    padding: 16px 24px;
    border-radius: 12px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 10003;
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
    animation: notificationPop 0.3s ease-out;
}

.copy-notification.show {
    display: flex;
}

.notification-icon {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: bold;
}

.notification-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
}

@keyframes notificationPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.donate-btn {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease, transform 0.6s ease-out, opacity 0.6s ease-out;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: borderGlitch 3s ease-in-out infinite;
    cursor: pointer;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.donate-btn:hover {
    animation: borderGlitchHover 0.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 10px;
    }
    
    .name {
        font-size: 28px;
    }
    
    .bio {
        font-size: 16px;
    }
    
    .stats-section {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 16px 12px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 11px;
        line-height: 1.3;
    }
    
    
    .link-card {
        padding: 16px;
    }
    
    .link-icon {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }
    
    .donate-modal {
        max-width: 95%;
        padding: 20px;
    }
    
    .wallet-address-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .wallet-address {
        font-size: 12px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--card-bg);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

