@font-face {
    font-family: 'CustomFont';
    src: url('https://aquamarine-distinctive-cobra-203.mypinata.cloud/ipfs/bafkreiclqcvj3wmhcvd65j5wb2lk4u3dvrj6xgsirdmndjuegnxybmwuoq') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Header Styles */
header {
    margin-bottom: 80px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: auto;
    height: 280px;
    margin: 0 auto 30px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(147, 51, 234, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(147, 51, 234, 0.8);
}

.title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 82px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #9333ea, #3b82f6, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 8s ease infinite;
    letter-spacing: -2px;
}

.aztec-logo {
    height: 0.9em;
    vertical-align: middle;
    margin-left: 10px;
    display: inline-block;
}

.subtitle {
    font-size: 28px;
    color: #a0a0a0;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Delegate Section */
.delegate-section {
    margin: 80px 0;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.delegate-btn {
    display: inline-block;
    padding: 28px 100px;
    font-size: 42px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
}

.delegate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.delegate-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 60px rgba(147, 51, 234, 0.6);
}

.delegate-btn:hover::before {
    left: 100%;
}

/* Contact Section */
.contact-section {
    margin: 60px 0;
    animation: fadeIn 1.4s ease-out 0.5s both;
}

.contact {
    font-size: 20px;
    color: #d0d0d0;
}

.contact a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact a:hover {
    color: #9333ea;
    border-bottom-color: #9333ea;
}

/* Founders Section */
.founders-section {
    margin-top: 100px;
    animation: fadeIn 1.6s ease-out 0.7s both;
}

.founders-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #ffffff;
    letter-spacing: 1px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9333ea, #3b82f6, #ec4899);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

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

.founder-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.founder-card:hover .founder-logo {
    transform: scale(1.1);
    border-color: #9333ea;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.6);
}

.founder-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.x-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.x-link:hover {
    background: #1da1f2;
    transform: scale(1.1);
}

.x-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Footer */
footer {
    margin-top: 120px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.8s ease-out 0.9s both;
}

footer p {
    color: #808080;
    font-size: 16px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 48px;
    }

    .subtitle {
        font-size: 20px;
    }

    .delegate-btn {
        padding: 22px 60px;
        font-size: 32px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founders-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
        height: 120px;
    }

    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .delegate-btn {
        padding: 18px 40px;
        font-size: 24px;
    }

    .contact {
        font-size: 16px;
    }
}
