/* ==========================================
   $DOY - The Meme Coin That Grips
   Premium Meme Coin Website Styles
   ========================================== */

/* CSS Variables */
:root {
    --primary: #D4A574;
    --primary-dark: #B8956A;
    --secondary: #F5E6D3;
    --accent: #FFD700;
    --bg-dark: #1a1510;
    --bg-darker: #0f0d0a;
    --bg-card: #252015;
    --text-light: #F5E6D3;
    --text-muted: #a89880;
    --gradient-gold: linear-gradient(135deg, #FFD700, #D4A574, #FFD700);
    --gradient-warm: linear-gradient(135deg, #D4A574 0%, #F5E6D3 50%, #D4A574 100%);
    --shadow-glow: 0 0 40px rgba(212, 165, 116, 0.3);
    --font-display: 'Bangers', cursive;
    --font-body: 'Comic Neue', cursive;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.center {
    text-align: center;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(26, 21, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent);
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover {
    color: var(--accent);
}

.btn-buy {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-x {
    background: transparent;
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-x:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at center, rgba(212, 165, 116, 0.1) 0%, transparent 70%),
        repeating-conic-gradient(from 0deg, rgba(245, 230, 211, 0.03) 0deg 10deg, transparent 10deg 20deg);
    animation: rotate-bg 60s linear infinite;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent);
    text-shadow:
        3px 3px 0 var(--bg-dark),
        -1px -1px 0 var(--bg-dark),
        1px -1px 0 var(--bg-dark),
        -1px 1px 0 var(--bg-dark);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

@keyframes glitch {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    92% {
        transform: translate(-2px, 2px);
    }

    94% {
        transform: translate(2px, -2px);
    }

    96% {
        transform: translate(-2px, -2px);
    }

    98% {
        transform: translate(2px, 2px);
    }
}

.tagline {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.highlight {
    color: var(--accent);
    display: inline-block;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
    }
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.contract-address {
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.contract-address .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contract-address .address {
    color: var(--accent);
    font-family: monospace;
    font-size: 0.9rem;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.copy-btn:hover {
    transform: scale(1.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.glow-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease;
}

.tilt-on-hover:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.02);
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
}

.feature-text h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Marquee Section */
.marquee-section {
    background: var(--bg-card);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.token-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.token-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(212, 165, 116, 0.1));
    border-color: var(--accent);
}

.token-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.token-card h3 {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 10px;
}

.token-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.token-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.coin-display {
    display: flex;
    justify-content: center;
}

.coin-img {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
}

.floating-slow {
    animation: float 6s ease-in-out infinite;
}

/* Chart Section */
.chart-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.chart-section .section-title {
    padding-right: 10px;
}

.chart-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.chart-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 165, 116, 0.2);
    box-shadow: var(--shadow-glow);
}

.chart-side-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    border: 2px solid rgba(212, 165, 116, 0.2);
}

@media (max-width: 900px) {
    .chart-content-grid {
        grid-template-columns: 1fr;
    }

    .chart-side-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    margin-left: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-marker {
    position: absolute;
    right: -25px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--bg-dark);
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.timeline-item:nth-child(even) .timeline-marker {
    right: auto;
    left: -25px;
}

.timeline-content {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    margin-right: 40px;
    text-align: right;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 40px;
}

.timeline-content:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.timeline-content h3 {
    font-family: var(--font-display);
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 1rem;
}

.rocket-display {
    display: flex;
    justify-content: center;
}

.rocket-img {
    max-width: 350px;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    animation: rocket-float 3s ease-in-out infinite;
}

@keyframes rocket-float {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Community Section */
.community {
    padding: 100px 0;
}

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

.social-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    border: 2px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.social-card span {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.social-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 10px;
    font-weight: 700;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-card:hover .social-hover {
    transform: translateY(0);
}

.social-card.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 0 30px rgba(29, 161, 242, 0.3);
}

.social-card.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.3);
}

.social-card.dex:hover {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

/* Buy Section */
.buy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    position: relative;
    overflow: hidden;
}

.buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
}

.buy-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.buy-content h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 15px;
}

.buy-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn.large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

/* Art Gallery Section */
.art-gallery {
    padding: 100px 0;
    background: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.disclaimer {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    text-align: center;
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 2rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 60px;
        justify-content: flex-start;
    }

    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: -5px;
        right: auto;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

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

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

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

    .buy-content h2 {
        font-size: 2.5rem;
    }

    .buy-buttons {
        flex-direction: column;
        align-items: center;
    }
}