/* Princess Ducks Adventure - Fun & Exciting Styles */

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #1E90FF 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><linearGradient id="wave" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0.3" /></linearGradient></defs><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="url(%23wave)"/></svg>') repeat-x;
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite alternate;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.duck-animation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.duck {
    font-size: 3rem;
    animation: float 2s ease-in-out infinite;
}

.duck:nth-child(2) {
    animation-delay: 0.5s;
}

.duck:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Section Styles */
section {
    padding: 60px 0;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.intro {
    text-align: center;
}

.intro h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #FF6347;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.intro-text {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.excitement-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #FF6347, #FFD700);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    border: none;
    font-family: inherit;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,99,71,0.3);
    color: white;
    text-decoration: none;
}

.badge-clickable {
    position: relative;
    overflow: hidden;
}

.badge-clickable::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.badge-clickable:hover::before {
    left: 100%;
}

.badge-clickable:active {
    transform: translateY(-3px) scale(0.98);
}

/* How it Works Section */
.how-it-works h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #4682B4;
    text-align: center;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    background: #FF6347;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255,99,71,0.3);
}

.step-content h3 {
    color: #2F4F4F;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

/* Gallery Preview Section */
.gallery-preview {
    background: linear-gradient(135deg, #9370DB, #8A2BE2);
    text-align: center;
    color: white;
}

.gallery-preview h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gallery-preview-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gallery-feature p {
    font-weight: bold;
    font-size: 1.1rem;
}

.gallery-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6347, #FFD700);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin: 10px;
}

.gallery-button.primary {
    background: linear-gradient(135deg, #FF6347, #FFD700);
    color: white;
}

.gallery-button.secondary {
    background: linear-gradient(135deg, #4682B4, #191970);
    color: white;
    animation: gameButtonPulse 3s ease-in-out infinite alternate;
}

@keyframes gameButtonPulse {
    0% { box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
    100% { box-shadow: 0 8px 25px rgba(70,130,180,0.4), 0 0 20px rgba(70,130,180,0.3); }
}

.adventure-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.gallery-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    text-decoration: none;
    color: white;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.contact-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-card h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    color: #FF6347;
    margin-bottom: 30px;
}

.email-highlight {
    background: linear-gradient(135deg, #4682B4, #87CEEB);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(70,130,180,0.2);
}

.email-icon {
    font-size: 2rem;
}

.email-link {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
    transform: scale(1.05);
}

.contact-instructions {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-top: 25px;
}

/* Share Button */
.share-options {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.share-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B0000;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 400px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 10px 30px rgba(255,215,0,0.4), 0 0 20px rgba(255,215,0,0.3); }
}

.share-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255,215,0,0.4);
    text-decoration: none;
    color: #8B0000;
}

.share-button.secondary {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    color: white;
    font-size: 1.2rem;
    margin-top: 15px;
    border: none;
    font-family: inherit;
}

.share-button.secondary:hover {
    box-shadow: 0 15px 40px rgba(70,130,180,0.4);
    color: white;
}

.copy-feedback {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    font-weight: bold;
    max-width: 300px;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateX(0);
}

/* Navigation */
.game-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #FFD700;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Banner Section */
.game-banner {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.game-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #FFD700;
    text-shadow: 3px 3px 0px #8B0000, 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 15px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 3px 3px 0px #8B0000, 0 0 30px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 3px 3px 0px #8B0000, 0 0 50px rgba(255, 215, 0, 0.8); }
}

.game-subtitle {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

/* Fun Facts Section */
.fun-facts h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #FF6347;
    text-align: center;
    margin-bottom: 50px;
}

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

.fact-card {
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-10px);
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.fact-card h3 {
    color: #4682B4;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.fact-card p {
    color: #555;
    line-height: 1.6;
}

/* Tips Section */
.tips h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #4682B4;
    text-align: center;
    margin-bottom: 50px;
}

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

.tip {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, #98FB98, #90EE90);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip:hover {
    transform: translateX(10px);
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip p {
    color: #2F4F4F;
    font-weight: 600;
    line-height: 1.5;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2F4F4F, #4682B4);
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

footer p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-small {
    font-size: 1rem !important;
    opacity: 0.8;
    font-weight: 400 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }
    
    .nav-links {
        margin-top: 15px;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .duck {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .excitement-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .badge {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    section {
        margin: 20px 0;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .step, .fact-card, .tip {
        padding: 20px;
    }
    
    .email-highlight {
        flex-direction: column;
        gap: 10px;
    }
    
    .email-link {
        font-size: 1.2rem;
    }
    
    .share-button {
        font-size: 1.2rem;
        padding: 15px 30px;
        max-width: 300px;
    }
    
    .copy-feedback {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    /* Banner responsive styles */
    .game-banner {
        height: 200px;
    }
    
    .banner-overlay {
        padding: 20px;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-subtitle {
        font-size: 1.1rem;
    }
}