/* Global Styles */
:root {
    /* Squeeze Coin Colors - based on the gold coin image */
    --primary-color: #ffc107; /* Gold */
    --secondary-color: #ffeb3b; /* Light gold */
    --accent-color: #ff9800; /* Orange accent */
    --dark-color: #333333; /* Dark text color (was blue background) */
    --light-color: #ffffff; /* White background */
    --text-color: #333333; /* Dark text */
    --text-light: #333333; /* Dark text (was white) */
    --border-radius: 12px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    
    /* Gradient colors */
    --gradient-start: #ffd700; /* Gold */
    --gradient-end: #ffeb3b; /* Light gold */
    
    /* Font families */
    --heading-font: 'Fredoka', sans-serif;
    --body-font: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--text-color);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--light-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--text-color);
}

.btn-secondary:hover::before {
    left: 100%;
}

/* Header Styles */
header {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: var(--light-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    position: relative;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 80%;
}

.social-links a {
    color: var(--text-color);
    margin-left: 15px;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
}

.social-links a span {
    margin-left: 5px;
    font-size: 0.85rem;
    display: none;
}

.social-links a.twitter-link span {
    display: inline-block;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-links a.twitter-link:hover span {
    opacity: 1;
    max-width: 150px;
}

.social-links a:hover {
    color: var(--light-color);
    transform: translateY(-3px);
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.x-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.x-logo {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.x-logo-link:hover .x-logo {
    color: var(--light-color);
}

/* Hero Section */
.hero {
    background: var(--light-color);
    color: var(--text-color);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Squeeze Banner.png') no-repeat center center;
    background-size: cover;
    opacity: 0.02;
    z-index: 0;
}

.coin-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.coin-image {
    max-width: 220px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    animation: float 6s ease-in-out infinite, pulse 3s ease-in-out infinite alternate;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 70px rgba(255, 215, 0, 0.8);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.hero .subtitle {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.live-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-box {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    min-width: 220px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(255, 235, 59, 0.03));
    z-index: -1;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.stat-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* About Section */
.about {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Squeeze Banner.png') no-repeat center center;
    background-size: cover;
    opacity: 0.02;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
    font-size: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Reduced from 40px */
    align-items: flex-start; /* Align items to the top */
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-highlights {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.highlight-box {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.highlight-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.highlight-box:hover::before {
    height: 100%;
    opacity: 0.05;
}

.highlight-box h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-box p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.highlight-percent {
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 0.8rem;
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
}

.highlight-percent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Contributors Section */
.contributors {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Merch Section */
.merch {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.merch::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 70%);
    z-index: 0;
}

.merch-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    margin-bottom: 20px;
}

.product-pic {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    object-fit: contain;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: var(--transition);
    background-color: #fff;
    padding: 10px;
}

.product-card:hover .product-pic {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.product-info h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.product-info p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-button {
    margin-top: auto;
    display: inline-block;
}

.proceeds-notice {
    text-align: center;
    margin-top: 40px;
    padding: 15px 20px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.1), rgba(255, 235, 59, 0.1));
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proceeds-notice p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.contributors::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 70%);
    z-index: 0;
}

.contributors-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contributor-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.contributor-card-link:hover {
    transform: translateY(-10px);
    text-decoration: none;
    color: inherit;
}

.contributor-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.contributor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.contributor-card-link:hover .contributor-card {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contributor-card-link:hover .contributor-card::before {
    opacity: 1;
}

.contributor-image {
    margin-bottom: 20px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: var(--transition);
    background-color: #fff;
}

.contributor-card-link:hover .profile-pic {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.contributor-info h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.contributor-info p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.contributor-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: var(--transition);
    color: var(--text-color);
}

.contributor-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Burn Timeline */
.burn-timeline {
    flex: 1;
    min-width: 300px;
    max-height: 380px; /* Limit the height to match the text */
    overflow: visible; /* Changed from hidden to ensure all items are visible */
}

.timeline-title {
    margin-bottom: 10px; /* Further reduced from 15px */
    color: var(--dark-color);
    text-align: center;
    font-size: 1.5rem; /* Further reduced from 1.6rem */
    position: relative;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Further reduced from -8px */
    left: 50%;
    transform: translateX(-50%);
    width: 40px; /* Further reduced from 50px */
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.timeline-container {
    position: relative;
    padding: 5px 0; /* Further reduced from 10px */
    max-height: none; /* Remove height limit to show all items */
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px; /* Reduced from 20px */
    height: 100%;
    width: 3px; /* Reduced from 4px */
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 40px; /* Reduced from 50px */
    margin-bottom: 8px; /* Further reduced from 15px */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 9px; /* Reduced from 12px */
    width: 14px; /* Further reduced from 16px */
    height: 14px; /* Further reduced from 16px */
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid #fff; /* Further reduced from 3px */
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2); /* Further reduced from 3px */
    z-index: 1;
}

.timeline-content {
    background-color: #fff;
    border-radius: 8px; /* Reduced from var(--border-radius) */
    padding: 10px; /* Further reduced from 15px */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Lighter shadow */
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(3px); /* Reduced from 5px */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.2rem; /* Further reduced from 0.3rem */
    font-size: 1.1rem; /* Further reduced from 1.2rem */
}

.timeline-content p {
    margin-bottom: 0.2rem; /* Further reduced from 0.3rem */
    font-size: 0.9rem; /* Further reduced from 0.95rem */
    line-height: 1.3; /* Added tighter line height */
}

.timeline-content .highlight-percent {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem; /* Further reduced from 1.1rem */
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 15px;
    }
    
    .timeline-marker {
        left: 7px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .burn-timeline {
        max-height: none; /* Remove height restriction on mobile */
    }
}


/* Footer */
footer {
    background: var(--light-color);
    color: var(--text-color);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    margin-bottom: 1.5rem;
}

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

.footer-links ul li a {
    color: var(--text-color);
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h3 {
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    padding: 8px 0;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-color);
}

.social-icons a i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contract-address {
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.contract-address:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.highlight-animation {
    animation: pulse 0.5s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .stat-box {
        min-width: 150px;
    }
    
    .about-content, 
    .contributors-content, 
    .tracker-content, 
    .calculator-content {
        flex-direction: column;
    }
    
    .contributors-content {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .live-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
    }
    
    section {
        padding: 60px 0;
    }
}
