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

:root {
    /* Color Palette */
    --primary: #FF4500; /* bright orange-red */
    --secondary: #FF8C00; /* dark orange */
    --accent: #ef8354; /* fits fire theme */
    --light: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --highlight: #FFCC00; /* fire-like yellow */
    
    /* Typography */
    --heading-font: 'Bubblegum Sans', cursive;
    --body-font: 'Comic Neue', cursive;
    --alt-font: 'Architects Daughter', cursive;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--light);
    letter-spacing: 0.5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icon {
    color: var(--secondary);
    text-decoration: none;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light);
    box-shadow: var(--shadow-sm);
}

.social-icon i, .social-icon .x-icon {
    font-size: 1.3rem;
}

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

.social-icon.youtube {
    color: #FF0000;
}

.social-icon.twitter {
    color: #000;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: var(--light-gray);
}

/* Container */
.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
.modern-header {
    background-color: var(--dark-gray);
    color: var(--light);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}


.header-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-md);
}

.logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: var(--spacing-md);
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    position: relative;
    padding: var(--spacing-xs) 0;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width var(--transition-normal);
}

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

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


/* Logo Container */
.logo-container {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 5px;
    z-index: 5;
}

.large-logo-image {
    max-width: 40%;
    height: auto;
    margin: 0 auto 0;
    display: block;
    /* Preserve transparent background */
    object-fit: contain;
    filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.3));
    transform: rotate(-2deg);
}

/* Tagline */
.tagline-container {
    width: 100%;
    text-align: center;
    margin: 20px auto;
}

.tagline {
    font-size: 26px;
    font-family: var(--heading-font);
    color: var(--primary);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Buy Button Container and Button */
.buy-button-container {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 20px auto 60px;
    z-index: 5;
}

.buy-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.buy-button:hover {
    transform: scale(1.05);
}

.buy-button:active {
    transform: scale(0.98);
}

.buy-burn-button {
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    color: white;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transform: rotate(3deg);
    transition: all 0.3s ease;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    border: 3px solid #FFCC00;
    position: relative;
    overflow: hidden;
}

.buy-burn-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,204,0,0.3) 0%, rgba(255,204,0,0) 70%);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.buy-button:hover .buy-burn-button {
    transform: rotate(3deg) scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #FF5722 0%, #FFA000 100%);
}

.buy-button:active .buy-burn-button {
    transform: rotate(3deg) scale(0.98);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.buy-text {
    position: absolute;
    /* Hide text visually but keep it for screen readers */
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Sections */
.info-section {
    padding: 80px 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.section-header h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.feature-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    font-family: var(--body-font);
}

/* Text Emphasis Styles */
.highlight {
    font-weight: 700;
    font-family: 'Permanent Marker', cursive;
    display: inline-block;
    transform: rotate(-1deg);
    color: var(--highlight);
}

.emphasis {
    font-weight: 700;
    font-size: 1.2em;
    letter-spacing: 0.5px;
    font-family: var(--heading-font);
    display: inline-block;
    transform: rotate(1deg);
}

.accent {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Permanent Marker', cursive;
    display: inline-block;
    transform: rotate(-1deg);
    color: var(--accent);
}

/* Burn Mechanism Section */
#burn-mechanism {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

#burn-mechanism .section-header h2 {
    color: var(--light);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

#burn-mechanism .section-header::after {
    background-color: var(--light);
}

.burn-mechanism {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.burn-mechanism::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.burn-mechanism p {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light);
}

.burn-mechanism p:first-of-type {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin: 15px 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5), 0 0 10px rgba(255,255,255,0.3);
    color: var(--light);
    letter-spacing: 0.5px;
}

.volume-burn-highlight {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--highlight);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.5), 0 0 15px rgba(255,204,0,0.5);
    font-family: var(--heading-font);
    margin: 25px 0;
    text-align: center;
    background: none;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.volume-burn-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    z-index: -1;
}

.volume-burn-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--highlight), transparent);
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Burn Calculator Styles */
@keyframes float {
    0% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
    100% { transform: translateY(0) rotate(-1deg); }
}

@keyframes wobble {
    0% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
    100% { transform: rotate(-2deg); }
}

@keyframes sparkle {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.burn-calculator {
    margin-top: 40px;
    background: #FF8C00;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    overflow: visible;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
    border: 4px solid #333;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.burn-calculator::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FFCC00' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
    border-radius: 25px;
    opacity: 0.5;
}

.burn-calculator::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 15%;
    width: 70%;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(5px);
    z-index: -2;
}

.burn-calculator:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.2);
}

.burn-calculator h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 38px;
    color: #333;
    font-family: 'Permanent Marker', cursive;
    transform: rotate(-2deg);
    text-shadow: 3px 3px 0 #FFCC00, 5px 5px 0 rgba(0,0,0,0.2);
    letter-spacing: 1px;
    animation: wobble 5s ease-in-out infinite;
}

.burn-calculator h3::before {
    content: '🔥';
    position: absolute;
    left: -40px;
    top: -5px;
    font-size: 32px;
    animation: pulse 2s infinite;
}

.burn-calculator h3::after {
    content: '🔥';
    position: absolute;
    right: -40px;
    top: -5px;
    font-size: 32px;
    animation: pulse 2s infinite 1s;
}

.calculator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.input-group {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    font-family: 'Comic Neue', cursive;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.5);
    transform: rotate(-1deg);
}

.input-group::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 4px solid #333;
    border-radius: 50%;
    z-index: 1;
}

.input-group input {
    width: 100%;
    padding: 18px 20px;
    font-size: 24px;
    border: 4px solid #333;
    border-radius: 30px;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Bubblegum Sans', cursive;
    font-weight: 600;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
    transform: rotate(1deg);
    position: relative;
}

.input-group input::placeholder {
    color: #aaa;
    font-family: 'Comic Neue', cursive;
}

.input-group input:focus {
    outline: none;
    background: #fff;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-5px) rotate(1deg);
}

.result-container {
    background: transparent;
    padding: 25px 30px;
    text-align: center;
    width: 240px;
    min-height: 140px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(3deg);
}

.result-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    animation: sparkle 3s infinite;
}

.result-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 30px;
    height: 30px;
    background: transparent;
    transform: translateY(-50%) rotate(45deg);
    z-index: -1;
}

.result-container p {
    margin: 0;
    position: relative;
    z-index: 1;
}

.result-container p:first-child {
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Comic Neue', cursive;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.burn-result {
    font-size: 48px !important;
    font-weight: 700;
    color: #fff !important;
    text-shadow: 3px 3px 0 #333, 5px 5px 0 rgba(0,0,0,0.2), 0 0 10px rgba(255,69,0,0.8);
    font-family: 'Permanent Marker', cursive !important;
    margin: 5px 0 !important;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
    -webkit-text-stroke: 2px #333;
}

/* Add stars around the result */
.result-container .burn-result::before,
.result-container .burn-result::after {
    content: '★';
    position: absolute;
    color: #fff;
    font-size: 24px;
    animation: sparkle 2s infinite;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.result-container .burn-result::before {
    top: -25px;
    left: 10px;
    animation-delay: 0.5s;
}

.result-container .burn-result::after {
    bottom: -25px;
    right: 10px;
    animation-delay: 1s;
}

/* Animation for when the result changes */
@keyframes highlight-pulse {
    0% { transform: scale(1) rotate(-2deg); }
    50% { transform: scale(1.2) rotate(2deg); }
    100% { transform: scale(1) rotate(-2deg); }
}

.highlight-animation {
    animation: highlight-pulse 0.5s ease !important;
}

/* Roadmap Section */
.roadmap-section {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 60px 0;
    text-align: center;
    clear: both;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 6px;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    background-image: repeating-linear-gradient(
        to bottom,
        #000 0px,
        #000 10px,
        #444 10px,
        #444 20px
    );
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 25px; /* Reduced spacing between items */
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    top: 15px;
    z-index: 1;
    background-color: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #FF8C00, inset 0 0 0 2px #FF8C00;
    animation: firePulse 2s infinite alternate ease-in-out;
    background-image: radial-gradient(circle at 30% 30%, #FFCC00 0%, transparent 20%), 
                      radial-gradient(circle at 70% 30%, #FFCC00 0%, transparent 10%),
                      radial-gradient(circle at 40% 70%, #FFCC00 0%, transparent 30%);
}

@keyframes firePulse {
    0% { transform: translateY(0) scale(1); box-shadow: 0 0 0 4px #FF8C00, inset 0 0 0 2px #FF8C00; }
    100% { transform: translateY(-5px) scale(1.1); box-shadow: 0 0 10px 4px #FF8C00, inset 0 0 0 2px #FF8C00; }
}

.timeline-item:nth-child(odd)::after {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(even)::after {
    left: -20px;
    animation-delay: 1s;
}

.timeline-content {
    padding: 15px 0;
    position: relative;
    transition: all 0.3s ease;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
}

.timeline-content:hover {
    transform: translateY(-8px) rotate(1deg);
}

.timeline-item:nth-child(odd) .timeline-content {
    transform: rotate(-1deg);
    padding-right: 15px;
}

.timeline-item:nth-child(even) .timeline-content {
    transform: rotate(1deg);
    padding-left: 15px;
}

.timeline-item:nth-child(odd) .timeline-content:hover {
    transform: translateY(-8px) rotate(-2deg);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateY(-8px) rotate(2deg);
}

.timeline-content h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: #000;
    text-shadow: 1px 1px 0 #fff, 2px 2px 0 #ccc;
    transform: rotate(-1deg);
    display: inline-block;
}

.milestone-desc {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: 'Comic Neue', cursive;
    transform: rotate(1deg);
    display: inline-block;
}

.burn-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-top: 5px;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 15px;
    display: inline-block;
    transform: rotate(-3deg);
    border: 2px dashed #000;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.timeline-image {
    max-width: 160px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    object-fit: contain;
    transform: rotate(3deg);
    transition: all 0.3s ease;
    filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.2));
}

.timeline-image:hover {
    transform: rotate(-5deg) scale(1.1);
    filter: drop-shadow(5px 5px 0 rgba(0,0,0,0.3));
}

/* Footer */
.modern-footer {
    background-color: var(--primary);
    color: var(--light);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transform: rotate(-1deg);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.disclaimer {
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    font-family: 'Comic Neue', cursive;
    transform: rotate(-1deg);
}

.copyright {
    font-size: 1rem;
    opacity: 0.7;
    font-family: 'Comic Neue', cursive;
    transform: rotate(1deg);
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .large-logo-image {
        max-width: 60%;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .milestone-desc {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .modern-header .header-content {
        flex-direction: column;
        padding: var(--spacing-sm);
    }
    
    .social-icons {
        margin-top: var(--spacing-sm);
    }
    
    nav {
        margin-top: var(--spacing-sm);
        width: 100%;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: var(--spacing-xs) var(--spacing-sm);
    }
    
    .large-logo-image {
        max-width: 80%;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: var(--spacing-sm);
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 10px;
        right: auto;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 10px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .timeline-image {
        max-width: 100px;
    }
    
    .buy-burn-button {
        font-size: 1.5rem;
        padding: 12px 30px;
    }
}
