/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Christmas Lights */
.lights-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
}

.lights-container.bottom {
    top: auto;
    bottom: 0;
}

.light {
    width: 20px;
    height: 25px;
    border-radius: 50% 50% 45% 45%;
    position: relative;
    animation: blink 1.5s infinite;
}

.light::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: #333;
}

.light.red {
    background: radial-gradient(circle, #ff0000, #cc0000);
    box-shadow: 0 0 20px #ff0000;
    animation-delay: 0s;
}

.light.gold {
    background: radial-gradient(circle, #ffd700, #cc9900);
    box-shadow: 0 0 20px #ffd700;
    animation-delay: 0.5s;
}

.light.white {
    background: radial-gradient(circle, #ffffff, #cccccc);
    box-shadow: 0 0 20px #ffffff;
    animation-delay: 1s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Snowflakes */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1.5em;
    opacity: 0.8;
    animation: fall 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: 2s; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 9s; animation-delay: 4s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 11s; animation-delay: 1s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 13s; animation-delay: 3s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 10s; animation-delay: 5s; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 12s; animation-delay: 2s; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 11s; animation-delay: 4s; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 9s; animation-delay: 1s; }
.snowflake:nth-child(10) { left: 95%; animation-duration: 10s; animation-delay: 3s; }

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    background: 
        radial-gradient(ellipse at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" opacity="0.05">🎄</text></svg>');
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.main-headline {
    font-size: 4em;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 
        0 0 20px #ffd700,
        0 0 40px #ff0000,
        3px 3px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.santa-image-container {
    margin: 40px 0;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.santa-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    border-radius: 20px;
}

.sub-headline {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #c00;
    border: 3px solid #c00;
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #c00, #ff0000);
    color: #ffd700;
    border: 3px solid #ffd700;
}

.cta-button.secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

/* Contract Section */
.contract-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a0000 0%, #0d4d0d 50%, #1a0000 100%);
    position: relative;
}

.gift-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
    border: 5px solid #c00;
}

.ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, #c00, #ff0000, #c00);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
}

.ribbon::before,
.ribbon::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #c00, #ff0000);
    border-radius: 50%;
}

.ribbon::before {
    top: -30px;
}

.ribbon::after {
    bottom: -30px;
}

.contract-content {
    position: relative;
    z-index: 1;
}

.contract-title {
    font-size: 3em;
    color: #c00;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.address-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.2);
}

#contractAddress {
    flex: 1;
    border: none;
    background: transparent;
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
    outline: none;
}

.copy-btn {
    background: linear-gradient(135deg, #c00, #ff0000);
    color: #ffd700;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.6);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a0000 0%, #330000 100%);
}

.section-title {
    font-size: 3em;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px #ffd700, 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

.about-text {
    font-size: 1.4em;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Tokenomics Section */
.tokenomics {
    padding: 80px 20px;
    background: linear-gradient(180deg, #330000 0%, #0d4d0d 50%, #330000 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.chart-container {
    max-width: 400px;
    margin: 0 auto;
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.token-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    backdrop-filter: blur(10px);
}

.token-item.liquidity {
    border-left-color: #4CAF50;
}

.token-item.marketing {
    border-left-color: #ff9800;
}

.token-item.team {
    border-left-color: #2196F3;
}

.token-item.tax {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
}

.token-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
}

.liquidity .token-dot {
    background: #4CAF50;
}

.marketing .token-dot {
    background: #ff9800;
}

.team .token-dot {
    background: #2196F3;
}

.token-label {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffd700;
}

.token-value {
    font-size: 1.3em;
    color: #fff;
    margin-left: 10px;
    font-weight: bold;
}

.tax-note {
    display: block;
    font-size: 0.9em;
    color: #fff;
    margin-top: 10px;
    font-style: italic;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 20px;
    background: linear-gradient(180deg, #330000 0%, #1a0000 100%);
}

.roadmap-tree {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.roadmap-phase {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 3px solid #ffd700;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.roadmap-phase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.phase-star {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3em;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.roadmap-phase h3 {
    color: #ffd700;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 20px;
}

.roadmap-phase ul {
    list-style: none;
}

.roadmap-phase li {
    font-size: 1.2em;
    padding: 12px 0;
    color: #fff;
    position: relative;
    padding-left: 30px;
}

.roadmap-phase li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Footer */
.footer {
    padding: 60px 20px 100px;
    background: linear-gradient(180deg, #1a0000 0%, #000 100%);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.social-icon {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.stocking {
    width: 80px;
    height: 100px;
    background: linear-gradient(180deg, #c00 0%, #c00 60%, #fff 60%, #fff 100%);
    border-radius: 0 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.5);
    position: relative;
}

.stocking::before {
    content: '';
    position: absolute;
    top: 60%;
    left: -20px;
    width: 30px;
    height: 40px;
    background: #c00;
    border-radius: 0 0 0 15px;
}

.icon {
    font-size: 2.5em;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.disclaimer {
    font-size: 1em;
    color: #999;
    max-width: 800px;
    margin: 30px auto;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2.5em;
    }
    
    .sub-headline {
        font-size: 1.3em;
    }
    
    .santa-image {
        max-width: 300px;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .contract-title {
        font-size: 2em;
    }
    
    .gift-box {
        padding: 30px 20px;
    }
    
    .address-box {
        flex-direction: column;
        gap: 15px;
    }
    
    #contractAddress {
        text-align: center;
        font-size: 0.9em;
    }
    
    .roadmap-tree {
        grid-template-columns: 1fr;
    }
}
