/* ============================================
   GOLDEN PHOENIX - CSS STYLES
   Authority. Sovereignty. Transparency.
   ============================================ */

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

:root {
    --primary-gold: #FFD700;
    --dark-bg: #0A0A0A;
    --accent-orange: #FF8C00;
    --text-light: #FFFFFF;
    --text-muted: #B0B0B0;
    --border-gold: #DAA520;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px var(--primary-gold));
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 15, 5, 0.9) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(255, 140, 0, 0.2) 50%, transparent 70%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: particleFloat 15s ease-in-out infinite;
}

.hero-particle--small {
    width: 4px;
    height: 4px;
}

.hero-particle--medium {
    width: 8px;
    height: 8px;
}

.hero-particle--large {
    width: 12px;
    height: 12px;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(15px, -25px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-10px, -45px) scale(0.95);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, -35px) scale(1.05);
        opacity: 0.7;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.phoenix-logo-hero {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.phoenix-img {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 30px var(--primary-gold));
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 30px var(--primary-gold)); }
    50% { filter: drop-shadow(0 0 50px var(--accent-orange)); }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover {
    background: var(--primary-gold);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(20, 15, 5, 0.8) 100%);
    border-top: 1px solid var(--border-gold);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.highlight {
    color: var(--accent-orange);
    font-style: italic;
    padding: 1rem;
    border-left: 3px solid var(--primary-gold);
    background: rgba(255, 215, 0, 0.05);
}

.nft-hero {
    width: 100%;
    max-width: 400px;
    border: 2px solid var(--border-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transition: var(--transition);
}

.nft-hero:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--border-gold);
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--border-gold);
    background: rgba(255, 215, 0, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}

.gallery-item:hover img {
    filter: brightness(1.2);
}

@keyframes galleryGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(255, 140, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
}

/* ============================================
   SYMBOLS SECTION
   ============================================ */

.symbols {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(20, 15, 5, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
    border-top: 1px solid var(--border-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.symbol-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-gold);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.symbol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: var(--transition);
}

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

.symbol-card:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.symbol-card.special {
    border: 2px solid var(--accent-orange);
    background: rgba(255, 140, 0, 0.1);
}

.symbol-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.symbol-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.symbol-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   BOUNTY SECTION
   ============================================ */

.bounty {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--border-gold);
}

.bounty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bounty-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 1px solid var(--border-gold);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.bounty-card:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
}

.bounty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bounty-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.bounty-amount {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bounty-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.bounty-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-gold);
    background: rgba(255, 215, 0, 0.05);
}

.timeline-marker {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   ROADMAP SECTION
   ============================================ */

.roadmap {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(20, 15, 5, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
    border-top: 1px solid var(--border-gold);
}

.roadmap-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.phase {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-gold);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.phase:hover::before {
    transform: scaleX(1);
}

.phase:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.phase-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phase h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.phase p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--border-gold);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-gold);
    background: rgba(255, 215, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border-gold);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--border-gold);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .roadmap-phases {
        grid-template-columns: 1fr;
    }

    .bounty-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
