/* ==========================================
   DoggoCoin ($DOGGO) - Meme Token BSC
   ========================================== */

/* CSS Variables */
:root {
    --primary: #f5a623;
    --primary-dark: #d4891a;
    --primary-light: #ffd06b;
    --secondary: #1a3a5c;
    --accent: #3498db;
    --bg-dark: #0a0e1a;
    --bg-darker: #060912;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #6b7280;
    --gradient-1: linear-gradient(135deg, #f5a623, #f39c12, #e67e22);
    --gradient-2: linear-gradient(135deg, #1a3a5c, #2c5282);
    --gradient-hero: linear-gradient(180deg, #0a0e1a 0%, #0f1729 50%, #0a0e1a 100%);
    --border-color: rgba(245, 166, 35, 0.15);
    --glow: 0 0 20px rgba(245, 166, 35, 0.3);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

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

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

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    z-index: 1001;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.lang-toggle:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: var(--primary);
}

.btn-buy {
    background: var(--gradient-1);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: floatCoin linear infinite;
}

.coin-1 { top: 15%; left: 5%; animation-duration: 8s; font-size: 2.5rem; }
.coin-2 { top: 25%; right: 10%; animation-duration: 10s; animation-delay: 1s; }
.coin-3 { top: 60%; left: 8%; animation-duration: 7s; animation-delay: 2s; font-size: 3rem; }
.coin-4 { top: 70%; right: 5%; animation-duration: 9s; animation-delay: 0.5s; }
.coin-5 { top: 40%; left: 15%; animation-duration: 11s; animation-delay: 3s; }
.coin-6 { top: 80%; right: 15%; animation-duration: 8.5s; animation-delay: 1.5s; }

@keyframes floatCoin {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(10deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-25px) rotate(8deg); }
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(245, 166, 35, 0); }
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.title-line-1, .title-line-3 {
    display: block;
    color: var(--text-primary);
}

.title-line-2 {
    display: block;
    font-size: 5rem;
}

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

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    min-width: 120px;
}

.stat-value {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(245, 166, 35, 0.1);
    transform: translateY(-3px);
}

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

.hero-image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.mascot-img {
    width: 420px;
    height: 420px;
    object-fit: contain;
    animation: mascotFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(245, 166, 35, 0.2));
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    color: var(--primary);
    font-size: 1.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
    display: block;
}

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

/* ==========================================
   TICKER BAR
   ========================================== */
.ticker-bar {
    background: var(--gradient-1);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

.ticker-content span {
    font-weight: 800;
    font-size: 0.95rem;
    color: #000;
    letter-spacing: 1px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.25);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.2);
    animation: mascotFloat 4s ease-in-out infinite;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feature-item > div > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================
   TOKEN INFO SECTION
   ========================================== */
.token-info {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 1.4rem;
}

.info-card h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-card p {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: var(--primary);
}

/* ==========================================
   TOKENOMICS SECTION
   ========================================== */
.tokenomics {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.tokenomics-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 120px;
}

.donut-chart {
    position: relative;
    width: 300px;
    height: 300px;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-segment {
    transition: all 0.5s ease;
}

.donut-segment:hover {
    filter: brightness(1.3);
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-percent {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--primary);
}

.donut-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tax-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tax-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.tax-color {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.tax-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.tax-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.tax-percent {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--primary);
}

.tax-item > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.buy-tax-highlight {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.buy-tax-highlight i {
    font-size: 2rem;
    color: #2ecc71;
    margin-top: 5px;
}

.buy-tax-highlight h4 {
    font-size: 1.1rem;
    color: #2ecc71;
    margin-bottom: 6px;
}

.buy-tax-highlight p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================
   CONTRACT SECTION
   ========================================== */
.contract-section {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
}

.contract-box {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contract-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.contract-address-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 10px;
}

.contract-address-row code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--primary);
    word-break: break-all;
    text-align: left;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow);
}

.copy-feedback {
    display: none;
    color: #2ecc71;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.copy-feedback.show {
    display: block;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-5px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

.contract-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contract-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.contract-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(245, 166, 35, 0.1);
}

/* ==========================================
   CHART SECTION
   ========================================== */
.chart-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.chart-container {
    max-width: 1000px;
    margin: 0 auto;
}

.chart-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 600px;
}

.chart-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.chart-link-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.chart-link-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(245, 166, 35, 0.1);
    transform: translateY(-2px);
}

/* ==========================================
   ROADMAP SECTION
   ========================================== */
.roadmap {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--border-color);
    z-index: 0;
}

.roadmap-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px 20px;
    position: relative;
    transition: var(--transition);
    z-index: 1;
}

.roadmap-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.roadmap-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
}

.roadmap-phase {
    display: inline-block;
    background: rgba(245, 166, 35, 0.15);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.roadmap-item.active .roadmap-phase {
    background: var(--gradient-1);
    color: #000;
}

.roadmap-item h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.roadmap-item ul {
    list-style: none;
}

.roadmap-item ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.roadmap-item ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.7rem;
}

.roadmap-item.active ul li::before {
    content: '✅';
}

/* ==========================================
   COMMUNITY SECTION
   ========================================== */
.community {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    display: block;
}

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

.social-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.social-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

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

.social-card.twitter { border-color: rgba(255, 255, 255, 0.15); }
.social-card.twitter:hover { background: rgba(255, 255, 255, 0.05); border-color: #fff; box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1); }
.social-card.twitter i { color: #fff; }

.social-card.discord { border-color: rgba(114, 137, 218, 0.3); }
.social-card.discord:hover { background: rgba(114, 137, 218, 0.1); border-color: #7289da; box-shadow: 0 10px 30px rgba(114, 137, 218, 0.2); }
.social-card.discord i { color: #7289da; }

.social-card.reddit { border-color: rgba(255, 69, 0, 0.3); }
.social-card.reddit:hover { background: rgba(255, 69, 0, 0.1); border-color: #ff4500; box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2); }
.social-card.reddit i { color: #ff4500; }

/* ==========================================
   HOW TO BUY SECTION
   ========================================== */
.how-to-buy {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: #000;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   DISCLAIMER SECTION
   ========================================== */
.disclaimer {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.disclaimer-box {
    background: rgba(231, 76, 60, 0.05);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.disclaimer-box h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.disclaimer-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.disclaimer-highlight {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem !important;
    color: #e74c3c !important;
    padding: 15px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: var(--radius);
    margin: 20px 0 !important;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.footer-links-section h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.footer-links-section ul li {
    margin-bottom: 10px;
}

.footer-links-section ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-section ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

/* ==========================================
   ANIMATIONS (Scroll Reveal)
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .title-line-2 { font-size: 4rem; }
    .hero-container { gap: 40px; }
    .mascot-img { width: 350px; height: 350px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { width: 250px; height: 250px; }
    .tokenomics-grid { grid-template-columns: 1fr; }
    .tokenomics-chart-container { position: static; }
    .roadmap-timeline { grid-template-columns: repeat(2, 1fr); }
    .roadmap-timeline::before { display: none; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: var(--transition);
        z-index: 1000;
        border-left: 1px solid var(--border-color);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .btn-buy {
        display: none;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

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

    .mascot-img {
        width: 280px;
        height: 280px;
    }

    .hero-image-glow {
        width: 280px;
        height: 280px;
    }

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

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

    .contract-address-row {
        flex-direction: column;
        gap: 15px;
    }

    .contract-address-row code {
        text-align: center;
        font-size: 0.7rem;
    }

    .roadmap-timeline { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social-icons { justify-content: center; }

    .chart-placeholder iframe {
        height: 450px !important;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .title-line-2 { font-size: 2.5rem; }
    .hero-desc { font-size: 0.95rem; }
    .mascot-img { width: 220px; height: 220px; }
    .hero-image-glow { width: 220px; height: 220px; }
    .hero-stats { gap: 10px; }
    .stat-item { padding: 10px 15px; min-width: 90px; }
    .stat-value { font-size: 1.2rem; }
    .section-title { font-size: 1.7rem; }
    .info-cards { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; }
    .contract-links { flex-direction: column; align-items: center; }
    .chart-links { flex-direction: column; align-items: center; }
    .disclaimer-box { padding: 25px; }
    .disclaimer-highlight { font-size: 1rem !important; }
}

/* Overlay for mobile menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: rgba(245, 166, 35, 0.3);
    color: var(--text-primary);
}
