/* ==========================================================================
   GramDog ($GRD) CSS Style Sheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-darker: #07090e;
    --bg-dark: #0a0e1a;
    --bg-card: rgba(13, 20, 38, 0.6);
    --bg-card-hover: rgba(20, 30, 58, 0.8);
    
    --primary: #0098ea;      /* TON Blue */
    --primary-glow: rgba(0, 152, 234, 0.35);
    
    --secondary: #00e5ff;    /* Cyan Neon */
    --secondary-glow: rgba(0, 229, 255, 0.25);
    
    --accent: #f5c242;       /* Royal Crown Gold */
    --accent-glow: rgba(245, 194, 66, 0.3);
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 152, 234, 0.5);
    
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 152, 234, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Global Styles */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

.page-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Background Sparkles & Orbs */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

.orb-2 {
    bottom: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
}

/* Common Layout Components */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 9999px;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: 0 0 0 0 transparent;
}

.primary-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 152, 234, 0.4);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 152, 234, 0.6);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-color);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 9, 14, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2.25rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.social-header-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.svg-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon-btn:hover {
    background: rgba(0, 152, 234, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.header-cta {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
}

.mobile-menu-socials,
.mobile-menu-buy {
    display: none;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 110;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 152, 234, 0.1);
    border: 1px solid rgba(0, 152, 234, 0.2);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-btn-group {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

/* Ticker Box */
.ticker-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    width: 100%;
    max-width: 580px;
    overflow: hidden;
}

.ticker-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
    border-right: 1px solid var(--border-color);
    padding-right: 1rem;
    margin-right: 1rem;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    gap: 2rem;
    animation: scroll-stats 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ticker-item .highlight {
    color: #ffffff;
    font-weight: 600;
}

/* Hero Mascot Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid var(--primary);
    box-shadow: 0 0 40px rgba(0, 152, 234, 0.3);
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.logo-glow {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 152, 234, 0.4) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Contract Section */
.contract-section {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

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

.contract-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    gap: 2rem;
    transition: var(--transition-normal);
}

.contract-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 25px rgba(0, 152, 234, 0.15);
}

.contract-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    overflow: hidden;
}

.contract-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.contract-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.1rem;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #ffffff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    background: var(--secondary);
    color: #07090e;
    transform: translateY(-1px);
}

.copy-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Generic Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

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

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

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

.about-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.card-hover-glow:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 152, 234, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.tokenomics-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

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

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.tokenomics-chart-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.tokenomics-chart-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.bar-group {
    display: flex;
    flex-direction: column;
}

.bar-label-group {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.bar-percentage {
    color: var(--primary);
}

.bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.35rem;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.fill-1 {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.fill-2 {
    background: var(--accent);
}

.fill-3 {
    background: #a855f7;
}

.bar-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* How to Buy Section */
.how-to-buy {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

/* Line connecting steps */
.steps-timeline::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 1;
    opacity: 0.3;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 0 20px var(--primary-glow);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.step-card:hover .step-num {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

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

.roadmap-phase {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.roadmap-phase.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 152, 234, 0.15);
}

.roadmap-phase:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
}

.phase-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phase-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phase-header h3 {
    font-size: 1.35rem;
}

.phase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.phase-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

/* Bullet icon */
.phase-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--text-secondary);
    font-weight: 800;
}

.phase-list li.done {
    color: #ffffff;
}

.phase-list li.done::before {
    content: '✓';
    color: var(--secondary);
}

/* Join the Pack Section */
.join-pack {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.join-card {
    background: linear-gradient(135deg, rgba(0, 152, 234, 0.15) 0%, rgba(0, 229, 255, 0.05) 100%), var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 152, 234, 0.2);
    border-radius: 30px;
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.join-card:hover {
    border-color: rgba(0, 152, 234, 0.4);
    box-shadow: 0 15px 40px rgba(0, 152, 234, 0.2);
}

.join-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.join-card h2 {
    font-size: 3rem;
    max-width: 600px;
    line-height: 1.2;
}

.join-card p {
    color: var(--text-secondary);
    max-width: 580px;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.join-btn-group {
    display: flex;
    gap: 1.5rem;
}

.align-icon {
    gap: 0.5rem;
}

.btn-svg-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer Section */
.footer {
    background: #04060b;
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-color);
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 2.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.6);
    line-height: 1.7;
    text-align: justify;
}

.footer-copyright-socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-social-icons {
    display: flex;
    gap: 1.5rem;
}

.footer-social-icons a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-social-icons a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes scroll-stats {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 152, 234, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(0, 152, 234, 0.4); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 152, 234, 0.2); }
}

.animate-pulse {
    animation: pulse 3s infinite ease-in-out;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
    
    .logo-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .about-grid, .steps-timeline, .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .steps-timeline::after {
        display: none; /* Hide timeline line on grid wrap */
    }
    
    .tokenomics-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Drawer */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #090e1a;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 105;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Toggle active animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .social-header-group {
        display: none;
    }
    
    .mobile-menu-socials {
        display: flex;
        gap: 1.25rem;
    }
    
    .mobile-menu-buy {
        display: inline-flex;
        padding: 0.65rem 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        box-shadow: 0 4px 15px rgba(0, 152, 234, 0.3);
    }

    .glow-orb {
        display: none;
    }

    .hero-btn-group,
    .join-btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        gap: 0.85rem;
    }
    
    .hero-btn-group .cta-button,
    .join-btn-group .cta-button {
        width: 100%;
    }
    
    .ticker-box {
        align-self: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .logo-wrapper {
        width: 100%;
        max-width: 250px;
        height: auto;
        aspect-ratio: 1;
    }
    
    .contract-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contract-value {
        white-space: normal;
        word-break: break-all;
    }
    
    .copy-btn {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .about-grid, .steps-timeline, .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    .join-card h2 {
        font-size: 2.25rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .header-container {
        padding: 1rem 1.25rem;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .hero-container {
        padding: 0 1.25rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn-group .cta-button {
        width: 100%;
    }
    
    .ticker-box {
        padding: 0.5rem 1rem;
    }
    
    .contract-container {
        padding: 0 1.25rem;
    }
    
    .contract-card {
        padding: 1.25rem 1rem;
        gap: 1.25rem;
    }
    
    .contract-value {
        font-size: 0.9rem;
    }
    
    .about-container, .tokenomics-container, .how-to-buy-container, .roadmap-container, .join-pack-container, .footer-container {
        padding: 0 1.25rem;
    }
    
    .about, .tokenomics, .how-to-buy, .roadmap, .join-pack {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .stat-number {
        font-size: 1.85rem;
    }
    
    .tokenomics-chart-card {
        padding: 1.5rem;
    }
    
    .join-card {
        padding: 3rem 1.25rem;
    }
    
    .join-card h2 {
        font-size: 1.85rem;
    }
    
    .join-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .join-btn-group .cta-button {
        width: 100%;
    }
}
