* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --christmas-red: #dc2626;
    --christmas-green: #16a34a;
    --christmas-gold: #fbbf24;
    --snow-white: #ffffff;
    --dark-green: #0f5132;
    --dark-red: #991b1b;
    --bg-gradient: linear-gradient(135deg, #0f5132 0%, #991b1b 100%);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-gradient);
    color: var(--snow-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Snow Animation */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5em;
    animation: snowfall linear infinite;
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 1s;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 11s;
    animation-delay: 0.5s;
}

.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 13s;
    animation-delay: 1.5s;
}

.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 14s;
    animation-delay: 2.5s;
}

.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 10s;
    animation-delay: 0.8s;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 12s;
    animation-delay: 1.2s;
}

.snowflake:nth-child(9) {
    left: 90%;
    animation-duration: 15s;
    animation-delay: 2.2s;
}

.snowflake:nth-child(10) {
    left: 15%;
    animation-duration: 11s;
    animation-delay: 0.3s;
}

.snowflake:nth-child(11) {
    left: 75%;
    animation-duration: 13s;
    animation-delay: 1.8s;
}

.snowflake:nth-child(12) {
    left: 55%;
    animation-duration: 14s;
    animation-delay: 2.8s;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(15, 81, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid var(--christmas-gold);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo h1 {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 2rem;
    color: var(--christmas-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--snow-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: var(--christmas-gold);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--christmas-gold);
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.nav-social {
    position: relative;
}

.nav-social::after {
    display: none;
}

.nav-social:hover {
    color: var(--christmas-gold);
    transform: translateY(-2px);
}

.btn-buy {
    background: var(--christmas-red);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--christmas-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 191, 36, 0.5);
    }
    to {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--snow-white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--christmas-red);
    color: var(--snow-white);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--snow-white);
    border-color: var(--christmas-gold);
}

.btn-secondary:hover {
    background: var(--christmas-gold);
    color: var(--dark-green);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.contract-address {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.contract-address p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contract-address code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    margin-bottom: 0.5rem;
}

.btn-copy {
    background: var(--christmas-green);
    color: var(--snow-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-copy:hover {
    background: #15803d;
}

/* Tokenomics Section */
.tokenomics {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--christmas-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tokenomics-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--christmas-gold);
}

.card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--snow-white);
    margin-bottom: 0.5rem;
}

.card-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Tax Section */
.tax-section {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.tax-title {
    text-align: center;
    font-size: 2rem;
    color: var(--christmas-gold);
    font-family: 'Mountains of Christmas', cursive;
    margin-bottom: 2rem;
}

.tax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.tax-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s;
}

.tax-card:hover {
    transform: translateY(-5px);
    border-color: var(--christmas-gold);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.2);
}

.tax-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tax-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--christmas-gold);
    margin-bottom: 0.5rem;
}

.tax-desc {
    font-size: 0.85rem;
    opacity: 0.7;
}

.tax-breakdown {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tax-breakdown h4 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--christmas-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tax-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tax-breakdown-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s;
}

.tax-breakdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--christmas-gold);
}

.breakdown-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.breakdown-label {
    flex: 1;
    font-weight: 500;
    font-size: 0.95rem;
}

.breakdown-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--christmas-gold);
    flex-shrink: 0;
}

.tokenomics-chart {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.tokenomics-chart h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--christmas-gold);
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.chart-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--percentage);
    background: var(--color);
    transition: width 1s ease;
}

.chart-bar span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: var(--snow-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Slideshow Section */
.gallery {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.5s;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-green) 100%);
    font-size: 6rem;
}

.placeholder-image p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--snow-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Separate Text Section */
.gallery-text-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 150px;
}

.gallery-text-container .slide-text {
    display: none;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(251, 191, 36, 0.3);
    animation: fadeIn 0.5s;
}

.gallery-text-container .slide-text.active {
    display: block;
}

.gallery-text-container .slide-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--christmas-gold);
    font-family: 'Mountains of Christmas', cursive;
}

.gallery-text-container .slide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--snow-white);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.slideshow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-btn.prev {
    left: 20px;
}

.slideshow-btn.next {
    right: 20px;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--christmas-gold);
    transform: scale(1.3);
}

/* Buy Section */
.buy-section {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.buy-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.buy-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(15, 81, 50, 0.9);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--christmas-gold);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--christmas-gold);
    margin-bottom: 1rem;
    font-family: 'Mountains of Christmas', cursive;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--snow-white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--christmas-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slideshow-wrapper {
        height: 400px;
    }
    
    .placeholder-image {
        font-size: 4rem;
    }
    
    .gallery-text-container .slide-text {
        padding: 1.5rem;
    }
    
    .gallery-text-container .slide-text h3 {
        font-size: 1.5rem;
    }
    
    .gallery-text-container .slide-text p {
        font-size: 1rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .tax-section {
        padding: 1.5rem;
    }
    
    .tax-title {
        font-size: 1.5rem;
    }
    
    .tax-grid {
        grid-template-columns: 1fr;
    }
    
    .tax-value {
        font-size: 2rem;
    }
    
    .tax-breakdown-grid {
        grid-template-columns: 1fr;
    }
    
    .tax-breakdown h4 {
        font-size: 1.1rem;
    }
}

