/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(102, 126, 234, 0.05) 10px,
        rgba(102, 126, 234, 0.05) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    animation: logoWobble 3s ease-in-out infinite;
}

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

.tagline {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.price-box {
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.old-price {
    font-size: 2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 20px;
}

.new-price {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    animation: pulse 1s ease-in-out infinite;
}

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

.limited-time {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.2rem;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.subscribe-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: wiggle 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.subscribe-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

.subscribers-count {
    margin-top: 20px;
    color: #666;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: visible;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Section Decorations */
.section-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 0.7;
    z-index: 10;
}

.deco-left {
    left: 20px;
    top: 20px;
    animation: swingLeft 4s ease-in-out infinite;
}

.deco-right {
    right: 20px;
    top: 20px;
    animation: swingRight 4s ease-in-out infinite;
}

@keyframes swingLeft {
    0%, 100% { transform: rotate(-10deg) translateX(0); }
    50% { transform: rotate(10deg) translateX(10px); }
}

@keyframes swingRight {
    0%, 100% { transform: rotate(10deg) translateX(0); }
    50% { transform: rotate(-10deg) translateX(-10px); }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: visible;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-card cite {
    display: block;
    text-align: right;
    color: #666;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    color: #666;
}

/* Live Stream Section */
.live-stream {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.live-stream h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.stream-wrapper {
    max-width: 854px;
    margin: 0 auto 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stream-wrapper::before {
    content: '🔴 LIVE';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 10;
    animation: blink 1s ease-in-out infinite;
}

.stream-wrapper iframe {
    width: 100%;
    height: 480px;
    border: none;
}

.stream-caption {
    color: #ddd;
    font-size: 1.2rem;
    font-style: italic;
}

/* Penguin Stars Section */
.penguin-stars {
    padding: 80px 0;
    background: #f8f9fa;
}

.penguin-stars h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #333;
}

.penguin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.penguin-card {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.penguin-card::before {
    content: '🔒';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.7;
}

.penguin-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.penguin-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.penguin-card:hover img {
    transform: scale(1.1) rotate(-5deg);
}

.penguin-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.penguin-card p {
    color: #666;
    font-style: italic;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.disclaimer {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.copyright {
    color: #95a5a6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal:not(.hidden) {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.modal-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.penguin-dance {
    font-size: 3rem;
    margin: 30px 0;
    animation: dance 1s ease-in-out infinite;
}

@keyframes dance {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px) rotate(-5deg); }
    75% { transform: translateX(10px) rotate(5deg); }
}

.modal-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Confetti Animation */
@keyframes confetti {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(300px) rotate(720deg); opacity: 0; }
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #667eea;
    animation: confetti 3s ease-in-out;
}

/* Floating Characters */
.floating-character {
    position: fixed;
    z-index: 100;
    pointer-events: none;
    opacity: 0.8;
}

.floating-character img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Individual floating positions and animations */
.float-1 {
    top: 10%;
    left: 5%;
    animation: float1 20s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 5%;
    animation: float2 25s ease-in-out infinite;
}

.float-3 {
    bottom: 20%;
    left: 10%;
    animation: float3 18s ease-in-out infinite;
}

.float-4 {
    top: 30%;
    right: 15%;
    animation: float4 22s ease-in-out infinite;
}

.float-5 {
    bottom: 40%;
    right: 8%;
    animation: float5 30s ease-in-out infinite;
}

/* Floating animations */
@keyframes float1 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translate(50px, -30px) rotate(15deg) scale(1.1); 
    }
    50% { 
        transform: translate(-30px, 20px) rotate(-10deg) scale(0.9); 
    }
    75% { 
        transform: translate(20px, -50px) rotate(20deg) scale(1.05); 
    }
}

@keyframes float2 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    33% { 
        transform: translate(-40px, 30px) rotate(-20deg); 
    }
    66% { 
        transform: translate(30px, -40px) rotate(25deg); 
    }
}

@keyframes float3 {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    50% { 
        transform: translate(60px, -60px) scale(1.2) rotate(180deg); 
    }
}

@keyframes float4 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    20% { 
        transform: translate(-30px, -30px) rotate(-15deg); 
    }
    40% { 
        transform: translate(40px, 10px) rotate(10deg); 
    }
    60% { 
        transform: translate(-20px, 40px) rotate(-20deg); 
    }
    80% { 
        transform: translate(30px, -20px) rotate(15deg); 
    }
}

@keyframes float5 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translate(-50px, -20px) rotate(-30deg) scale(0.8); 
    }
    50% { 
        transform: translate(30px, 30px) rotate(45deg) scale(1.1); 
    }
    75% { 
        transform: translate(-40px, 10px) rotate(-15deg) scale(0.95); 
    }
}

/* Make them interactive on hover (override pointer-events) */
.floating-character:hover {
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
}

.floating-character:hover img {
    animation: wiggle 0.5s ease-in-out;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .floating-character img {
        width: 50px;
        height: 50px;
    }
    
    .section-decoration {
        width: 60px;
        height: 60px;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .old-price {
        font-size: 1.5rem;
    }

    .new-price {
        font-size: 2rem;
    }

    .subscribe-btn {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .features h2,
    .testimonials h2,
    .faq h2 {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .penguin-dance {
        font-size: 2rem;
    }
    
    .live-stream h2 {
        font-size: 2rem;
    }
    
    .stream-wrapper {
        margin: 0 20px 30px;
    }
    
    .stream-wrapper iframe {
        height: 300px;
    }
    
    .stream-caption {
        font-size: 1rem;
        padding: 0 20px;
    }
}