/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New Color Palette */
    --background: #B3E6EA;           /* Голубой пастельный */
    --foreground: #FFFFFF;           /* Белый */
    --card: #FBA8C6;                 /* Светло-розовый */
    --card-foreground: #222222;      /* Чёрный полупрозрачный */
    --primary: #FF74A4;              /* Розовый яркий */
    --primary-foreground: #FFFFFF;   /* Белый */
    --secondary: #FF4F88;            /* Малиново-розовый */
    --secondary-foreground: #FFFFFF; /* Белый */
    --muted: #444444;                /* Серый мягкий */
    --muted-foreground: #444444;     /* Серый мягкий */
    --accent: #FF74A4;               /* Розовый яркий */
    --accent-foreground: #FFFFFF;    /* Белый */
    --destructive: #FF4F88;          /* Малиново-розовый */
    --destructive-foreground: #FFFFFF; /* Белый */
    --border: #FBA8C6;               /* Светло-розовый */
    --input: #FBA8C6;                /* Светло-розовый */
    --ring: #FF74A4;                 /* Розовый яркий */
    --radius: 1rem;
    
    /* Theme Colors */
    --ice-blue: #B3E6EA;             /* Голубой пастельный */
    --ice-glow: #FF74A4;             /* Розовый яркий */
    --aurora-purple: #FF4F88;        /* Малиново-розовый */
    --aurora-pink: #FBA8C6;          /* Светло-розовый */
    --snow-white: #FFFFFF;           /* Белый */
    --frost: #444444;                /* Серый мягкий */
    --green-accent: #4CAF50;         /* Зеленый акцент */
    
    /* Gradients */
    --gradient-aurora: linear-gradient(135deg, #FF74A4 0%, #FF4F88 50%, #FBA8C6 100%);
    --gradient-ice: linear-gradient(180deg, rgba(255, 116, 164, 0.2) 0%, transparent 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(255, 116, 164, 0.3) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(255, 116, 164, 0.4), 0 0 80px rgba(255, 79, 136, 0.2);
    --shadow-card: 0 8px 32px rgba(34, 34, 34, 0.1);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 116, 164, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 79, 136, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.glow-text {
    text-shadow: 0 0 20px hsl(var(--ice-glow) / 0.5);
}

.aurora-gradient {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--border) / 0.3);
    box-shadow: var(--shadow-card);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--card-foreground);
    border: 2px solid var(--border);
    padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 116, 164, 0.1);
    color: var(--card-foreground);
}

.btn-green {
    background: var(--green-accent);
    color: var(--card-foreground);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.btn-green:hover {
    background: #45a049;
    transform: translateY(-2px);
    color: var(--card-foreground);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    margin-right: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(251, 168, 198, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 116, 164, 0.3);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-image {
    height: 3rem;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--card-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--card-foreground);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.snowflakes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.snowflake {
    position: absolute;
    color: var(--primary);
    animation: fall linear infinite;
    opacity: 0.7;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    margin-bottom: 2rem;
    color: var(--card-foreground);
}

.badge-icon {
    color: var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--card-foreground);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--card-foreground);
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
}

.stat-card {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.image-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    border-radius: 1.5rem;
    filter: blur(3rem);
}

.nft-image {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--border) / 0.3);
}

/* About Section */
.about {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--card-foreground);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image {
    position: relative;
}

.collection-image {
    width: 100%;
    border-radius: 1.5rem;
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--border) / 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(255, 116, 164, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--card-foreground);
}

.feature-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stats-section {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    color: var(--muted-foreground);
}

/* Article Section */
.article {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, rgba(255, 116, 164, 0.05) 0%, rgba(179, 230, 234, 0.1) 100%);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.article-text {
    line-height: 1.8;
    color: var(--card-foreground);
}

.article-intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(251, 168, 198, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
}

.article-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 116, 164, 0.3);
}

.article-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-text strong {
    color: var(--primary);
    font-weight: 600;
}

.article-cta {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(68, 68, 68, 0.1);
    border-radius: 0.75rem;
    border-left: 4px solid var(--muted-foreground);
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-aurora);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--gradient-aurora);
    border: 3px solid var(--background);
    box-shadow: 0 0 20px rgba(255, 116, 164, 0.5);
    z-index: 10;
}

.timeline-content {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
}

.timeline-phase {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 116, 164, 0.2);
    color: var(--primary);
    border: 1px solid rgba(255, 116, 164, 0.3);
}

.timeline-status.active {
    background: var(--green-accent);
    color: white;
    border-color: var(--green-accent);
}

/* Mint Section */
.mint {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, rgba(255, 116, 164, 0.05) 0%, rgba(179, 230, 234, 0.1) 100%);
}

.mint-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.mint-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mint-stat-card {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.mint-stat-card:hover {
    transform: translateY(-5px);
}

.mint-stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mint-stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.mint-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.mint-features {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

.mint-features-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin-bottom: 1rem;
}

.mint-features-list {
    list-style: none;
    padding: 0;
}

.mint-features-list li {
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    border-bottom: 1px solid rgba(255, 116, 164, 0.1);
}

.mint-features-list li:last-child {
    border-bottom: none;
}

.mint-widget {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 6rem;
}

.mint-widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mint-widget-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin-bottom: 0.5rem;
}

.mint-widget-subtitle {
    color: var(--muted-foreground);
}

.mint-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mint-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mint-btn-counter {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 116, 164, 0.3);
    background: rgba(255, 116, 164, 0.1);
    color: var(--card-foreground);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mint-btn-counter:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mint-input {
    width: 5rem;
    height: 3rem;
    text-align: center;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 116, 164, 0.3);
    background: rgba(255, 255, 255, 0.5);
    color: var(--card-foreground);
    font-size: 1.25rem;
    font-weight: bold;
}

.mint-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 116, 164, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 116, 164, 0.3);
}

.mint-total-label {
    font-weight: 600;
    color: var(--card-foreground);
}

.mint-total-value {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mint-btn {
    width: 100%;
}

.mint-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(251, 168, 198, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 116, 164, 0.3);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--card-foreground);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
}

/* Footer */
.footer {
    padding: 3rem 1rem;
    border-top: 1px solid rgba(255, 116, 164, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--card-foreground);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.social-buttons {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 116, 164, 0.5);
    background: transparent;
    color: var(--card-foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.social-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 116, 164, 0.1);
    color: var(--card-foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 116, 164, 0.3);
    text-align: center;
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(251, 168, 198, 0.95);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 116, 164, 0.3);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        left: -1.25rem;
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .mint-content {
        grid-template-columns: 1fr;
    }
    
    .mint-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mint-widget {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-image {
        height: 2.5rem;
        max-width: 150px;
    }
    
    .footer-logo {
        height: 2rem;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .mint-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mint-widget {
        padding: 1.5rem;
    }
    
    .logo-image {
        height: 2rem;
        max-width: 120px;
    }
    
    .footer-logo {
        height: 1.8rem;
        max-width: 120px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .article-intro {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .article-subtitle {
        font-size: 1.3rem;
    }
}
