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

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #8b0000;
    --glow-color: rgba(212, 175, 55, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.4), transparent);
    background-size: 200% 200%;
    animation: particles-float 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

/* Spawn Symbol Animation */
.spawn-symbol {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    animation: symbol-pulse 3s ease-in-out infinite;
}

.symbol-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--glow-color), 0 0 60px var(--glow-color);
    animation: core-pulse 2s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px var(--glow-color), 0 0 60px var(--glow-color);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 50px var(--glow-color), 0 0 100px var(--glow-color);
    }
}

.symbol-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: rays-rotate 8s linear infinite;
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    transform-origin: top center;
    box-shadow: 0 0 10px var(--glow-color);
}

.ray-1 { transform: translate(-50%, -50%) rotate(0deg); }
.ray-2 { transform: translate(-50%, -50%) rotate(45deg); }
.ray-3 { transform: translate(-50%, -50%) rotate(90deg); }
.ray-4 { transform: translate(-50%, -50%) rotate(135deg); }
.ray-5 { transform: translate(-50%, -50%) rotate(180deg); }
.ray-6 { transform: translate(-50%, -50%) rotate(225deg); }
.ray-7 { transform: translate(-50%, -50%) rotate(270deg); }
.ray-8 { transform: translate(-50%, -50%) rotate(315deg); }

@keyframes rays-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes symbol-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-color);
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.title-line {
    display: block;
    animation: title-slide 1s ease-out;
}

.title-subtitle {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.8;
    animation: title-slide 1s ease-out 0.3s both;
}

@keyframes title-slide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fade-in 1s ease-out 0.6s both;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fade-in 1s ease-out 0.9s both;
}

.social-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    border: 2px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px var(--glow-color), 0 0 20px var(--glow-color);
    border-color: var(--gold-light);
    background: rgba(212, 175, 55, 0.2);
}

.social-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-color), transparent);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.social-btn:hover .btn-glow {
    width: 200px;
    height: 200px;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-btn:hover .btn-icon {
    transform: rotate(360deg) scale(1.2);
}

.social-btn:hover .btn-logo {
    transform: scale(1.1);
}

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

/* Platform-specific colors */
.pumpfun-btn {
    border-color: #9333ea;
    background: rgba(147, 51, 234, 0.1);
}

.pumpfun-btn:hover {
    border-color: #a855f7;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5), 0 0 20px rgba(147, 51, 234, 0.3);
    background: rgba(147, 51, 234, 0.2);
}

.twitter-btn {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.twitter-btn:hover {
    border-color: #1da1f2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.5), 0 0 20px rgba(29, 161, 242, 0.3);
    background: rgba(29, 161, 242, 0.2);
}

.telegram-btn {
    border-color: #0088cc;
    background: rgba(0, 136, 204, 0.1);
}

.telegram-btn:hover {
    border-color: #0088cc;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.5), 0 0 20px rgba(0, 136, 204, 0.3);
    background: rgba(0, 136, 204, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    box-shadow: 0 0 10px var(--glow-color);
}

/* About Section */
.about {
    background: var(--bg-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cover-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .cover-image {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.about-image:hover .image-glow {
    opacity: 0.5;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-paragraph.highlight {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

/* Symbolism Section */
.symbolism {
    background: var(--bg-dark);
}

.symbolism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.symbol-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.symbol-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.symbol-card:hover::before {
    opacity: 0.3;
}

.symbol-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px var(--glow-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: icon-float 3s ease-in-out infinite;
}

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

.card-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}


/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 40px;
}

.footer-content {
    text-align: center;
}

.footer-symbol {
    margin-bottom: 30px;
}

.footer-spawn-symbol {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow-color);
    animation: footer-symbol-pulse 3s ease-in-out infinite;
}

@keyframes footer-symbol-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--glow-color);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px var(--glow-color);
    }
}

.footer-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
}

.footer-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-social-btn:hover .footer-logo {
    transform: scale(1.1);
}

.footer-social-btn:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px var(--glow-color);
    background: rgba(212, 175, 55, 0.3);
}

.footer-social-btn.pumpfun-btn:hover {
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.5);
}

.footer-social-btn.twitter-btn:hover {
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.5);
}

.footer-social-btn.telegram-btn:hover {
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .symbolism-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

