:root {
    --primary-color: #ff3a3a;
    --primary-hover: #e62e2e;
    --secondary-color: #333333;
    --light-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.buy-nav-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.buy-nav-button:hover {
    background-color: var(--primary-hover);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.burn-counter {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary-color);
}

.burn-counter h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.counter-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.counter-currency {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.burn-animation-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.burning-token {
    max-width: 300px;
    position: relative;
    z-index: 1;
}

.fire-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.burnsolana.xyz/assets/fire-animation.gif') no-repeat center;
    background-size: contain;
    opacity: 0.7;
    z-index: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about h2, .tokenomics h2, .burn-tracker h2, .buy h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.about h2::after, .tokenomics h2::after, .burn-tracker h2::after, .buy h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tokenomics Section */
.tokenomics {
    padding: 80px 0;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tokenomics-item {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tokenomics-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tokenomics-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tokenomics-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Burn Tracker Section */
.burn-tracker {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.burn-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.stat p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.burn-visualization {
    position: relative;
    margin-top: 4rem;
}

.progress-container {
    height: 30px;
    background-color: var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 1.5s ease-in-out;
}

.burn-flames {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    pointer-events: none;
}

/* Buy Section */
.buy {
    padding: 80px 0;
}

.buy h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.buy h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.buy-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.buy-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    min-width: 250px;
    text-align: center;
}

.buy-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.contract-address {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contract-address h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-size: 1.5rem;
}

.address-container {
    display: flex;
    background-color: var(--light-gray);
    border-radius: 50px;
    padding: 0.5rem;
    overflow: hidden;
}

.address-container p {
    flex: 1;
    padding: 0.8rem 1.5rem;
    font-family: monospace;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address-container button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.address-container button:hover {
    background-color: var(--primary-hover);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .burn-stats {
        grid-template-columns: 1fr;
    }
    
    .buy-options {
        align-items: center;
    }
    
    .contract-address {
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

/* Burn Wallet Tracker Button */
.burn-wallet-tracker {
    margin-top: 3rem;
    text-align: center;
}

.burn-wallet-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    gap: 0.5rem;
}

.burn-wallet-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.button-icon {
    font-size: 1.2rem;
}

.tracker-note {
    margin-top: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Burn Percentage Display */
.burn-percentage {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

#burnPercentageDisplay {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
} 