/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #F5E8C7;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    color: #F5E8C7;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 59, 48, 0.3);
}

.highlight {
    color: #FF3B30;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 59, 48, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(255, 59, 48, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 59, 48, 0.5));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 15px rgba(255, 59, 48, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FF3B30;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #F5E8C7;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF3B30;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FF3B30;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #F5E8C7;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 80px 50px 0 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 80vh;
    width: auto;
    max-width: 50%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 59, 48, 0.3));
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #F5E8C7;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 59, 48, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #E6D2AA;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #FF3B30, #CC2E26);
    color: #F5E8C7;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.5);
    background: linear-gradient(45deg, #FF4B40, #DD3E36);
}

.hero-btn.secondary {
    background: transparent;
    color: #F5E8C7;
    border: 2px solid #FF3B30;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.2);
}

.hero-btn.secondary:hover {
    background: rgba(255, 59, 48, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px rgba(255, 59, 48, 0.5); }
    100% { text-shadow: 0 0 50px rgba(255, 59, 48, 0.8); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

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

.about-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(255, 59, 48, 0.3));
    transition: all 0.3s ease;
}

.banner-image:hover {
    filter: drop-shadow(0 15px 40px rgba(255, 59, 48, 0.5));
    transform: scale(1.02);
}

.about-text-content {
    padding-left: 2rem;
}

.section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #E6D2AA;
}

.don-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 59, 48, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 59, 48, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(255, 59, 48, 0.1);
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.2);
}

.feature i {
    font-size: 1.8rem;
    color: #FF3B30;
    min-width: 40px;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #F5E8C7;
}

.feature-content p {
    color: #E6D2AA;
    margin: 0;
    font-size: 0.9rem;
}

/* Social Links Section */
.socials {
    padding: 100px 0;
    background: #000000;
}

.socials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #E6D2AA;
    margin-bottom: 3rem;
    font-style: italic;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 59, 48, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #F5E8C7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(255, 59, 48, 0.1);
    border-color: #FF3B30;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 59, 48, 0.3);
}

.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF3B30, #CC2E26);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 59, 48, 0.6);
}

.social-icon i {
    font-size: 1.8rem;
    color: #F5E8C7;
}

.x-logo {
    font-size: 2.8rem;
    color: #F5E8C7;
    font-weight: bold;
    font-family: 'Times New Roman', serif;
}

.social-link span {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.section-title {
    text-align: center;
}

.tokenomics-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #FF3B30;
    margin-bottom: 3rem;
    font-weight: 600;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.chart-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-container canvas {
    position: relative;
    z-index: 1;
}

.token-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(255, 59, 48, 0.5));
    transition: all 0.3s ease;
    border: 3px solid #FF3B30;
}

.token-center-image:hover {
    transform: translate(-50%, -50%) scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 59, 48, 0.8));
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tokenomics-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 59, 48, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 59, 48, 0.1);
}

.token-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.token-color.liquidity { background: #FF3B30; }
.token-color.team { background: #FF6B30; }
.token-color.marketing { background: #FF9B30; }
.token-color.airdrop { background: #FFCB30; }
.token-color.don { background: #FF3B30; }

.token-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.token-label {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #F5E8C7;
}

.token-percentage {
    font-weight: 600;
    color: #FF3B30;
    font-size: 1.2rem;
}

.contract-info {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 59, 48, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 59, 48, 0.1);
}

.contract-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contract-address {
    color: #FF3B30;
    font-family: 'Monaco', monospace;
    font-size: 0.9rem;
}

.copy-btn {
    background: #FF3B30;
    color: #F5E8C7;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: #CC2E26;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #000000;
    border-top: 1px solid rgba(255, 59, 48, 0.1);
}

.footer-content {
    text-align: center;
    color: #E6D2AA;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 80px 20px 0 20px;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        height: 40vh;
        max-width: 80%;
        margin-top: 2rem;
    }

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

    .about-text-content {
        padding-left: 0;
        text-align: center;
    }

    .section-title {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .hero-image {
        height: 35vh;
        max-width: 90%;
    }

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

    .don-features {
        gap: 1rem;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }
}

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

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

    .social-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-image {
        height: 40px;
    }

    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

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

/* Scroll Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}
