* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Floating Elements */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffd700, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffd700, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffd700, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float 20s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(10px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(45deg, #fff, #ffd700, #fff, #ff6b6b, #fff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out, gradientFlow 4s ease-in-out infinite;
    position: relative;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 200% 50%; }
    75% { background-position: 300% 50%; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #ffd700);
    background-size: 200% 200%;
    color: #333;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.6s both, buttonPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4), 0 5px 15px rgba(0,0,0,0.1);
    background-position: 100% 50%;
}

.cta-button:hover::before {
    left: 100%;
}

@keyframes buttonPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9ff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    background: linear-gradient(45deg, #667eea, #764ba2, #ffd700, #667eea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #ffd700);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 200% 50%; }
    75% { background-position: 300% 50%; }
}

@keyframes underlineGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
        width: 100px;
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        width: 150px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(15deg);
    animation-play-state: paused;
    background: linear-gradient(135deg, #ffd700, #ff6b6b, #667eea);
}

.feature-card:hover .feature-icon::before {
    animation-duration: 0.5s;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2, #ffd700);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: iconMorph 3s ease-in-out infinite, iconGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

@keyframes iconMorph {
    0%, 100% { 
        border-radius: 50%; 
        background-position: 0% 50%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        background-position: 100% 50%;
        transform: rotate(5deg) scale(1.05);
    }
    50% { 
        border-radius: 50% 20% 50% 20%;
        background-position: 200% 50%;
        transform: rotate(0deg) scale(1.1);
    }
    75% { 
        border-radius: 20% 50% 20% 50%;
        background-position: 100% 50%;
        transform: rotate(-5deg) scale(1.05);
    }
}

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 40px rgba(102, 126, 234, 0.4); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Accessibility Features */
.accessibility {
    padding: 100px 0;
    background: white;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.accessibility-item {
    background: linear-gradient(135deg, #f8f9ff, #e8f0fe);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.accessibility-item h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.accessibility-item p {
    color: #666;
    line-height: 1.7;
}

/* Game Preview */
.game-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
}

.preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.preview-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.preview-image {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

.game-mockup {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.game-mockup:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(3deg) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.game-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    transition: all 1s ease-in-out;
    z-index: 1;
    filter: blur(1px);
}

.game-mockup:hover::before {
    opacity: 0.5;
    filter: blur(0px);
    transform: scale(1.05);
}

.game-mockup > div {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.game-mockup:hover > div {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    transform: scale(1.02);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #333;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #ccc;
}

/* CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ffd700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Advanced Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px) rotateY(-15deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px) rotateY(15deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
    opacity: 0;
    transform: translateY(100px) rotateX(-15deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8) rotateZ(-5deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translateX(0) translateY(0) rotateX(0) rotateY(0) rotateZ(0) scale(1);
}

/* Staggered Animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Parallax Elements */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Floating Background Elements */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes::before,
.floating-shapes::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    animation: floatShapes 20s linear infinite;
}

.floating-shapes::before {
    top: 20%;
    left: 10%;
    animation-delay: -5s;
}

.floating-shapes::after {
    top: 60%;
    right: 10%;
    animation-delay: -10s;
    animation-direction: reverse;
}

@keyframes floatShapes {
    0% { transform: translateY(0px) rotateZ(0deg); }
    25% { transform: translateY(-20px) rotateZ(90deg); }
    50% { transform: translateY(0px) rotateZ(180deg); }
    75% { transform: translateY(20px) rotateZ(270deg); }
    100% { transform: translateY(0px) rotateZ(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .preview-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Pulse animation for important elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Interactive Demo Styles */
.demo-container {
    margin-top: 1.5rem;
    min-height: 300px;
    background: #f8f9ff;
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.demo-button {
    background: linear-gradient(45deg, #667eea, #764ba2, #ffd700);
    background-size: 300% 300%;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: bold;
    margin-bottom: 1rem;
    animation: demoButtonShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.demo-button::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: sparkle 2s linear infinite;
    opacity: 0;
}

.demo-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    background-position: 100% 0;
}

.demo-button:hover::before {
    opacity: 1;
    left: calc(100% + 10px);
}

@keyframes demoButtonShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes sparkle {
    0% { left: -30px; opacity: 0; }
    50% { opacity: 1; }
    100% { left: calc(100% + 30px); opacity: 0; }
}

/* Season Selector Demo */
.seasons-container {
    display: none;
    margin-top: 1rem;
    padding: 10px 0;
}

.seasons-container.active {
    display: block;
}

.seasons-scroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    padding: 0 10px;
    max-width: 300px;
    margin: 0 auto;
}

.season-card {
    background: white;
    border-radius: 10px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.season-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.season-card.playing {
    animation: musicPulse 1s infinite;
    border: 2px solid #667eea;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.season-card.playing::after {
    content: '🎵';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffd700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

@keyframes musicPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.seasons-container::-webkit-scrollbar {
    height: 6px;
}

.seasons-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.seasons-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

/* Scene Filter Demo */
.scene-container {
    display: none;
    position: relative;
    background: 
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
        radial-gradient(circle at 30% 20%, #ff6b6b 3px, transparent 3px),
        radial-gradient(circle at 70% 30%, #ffd700 2px, transparent 2px),
        radial-gradient(circle at 40% 70%, #ff6b6b 2px, transparent 2px),
        radial-gradient(circle at 80% 60%, #90EE90 2px, transparent 2px),
        linear-gradient(135deg, #8B4513 0%, #A0522D 20%, #D2691E 40%, #CD853F 60%, #DEB887 80%, #F5DEB3 100%);
    background-size: 100% 100%, 40px 40px, 35px 35px, 45px 45px, 30px 30px, 100% 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
    border: 3px solid #8B4513;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.scene-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%),
        radial-gradient(ellipse at center bottom, rgba(139,69,19,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.scene-container.active {
    display: block;
}

.scene-element {
    position: absolute;
    transition: all 0.8s ease;
    cursor: pointer;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Elementos da pizzaria */
.pizza-oven { left: 30px; top: 80px; font-size: 3rem; z-index: 4; }
.pizza-table { left: 150px; top: 140px; font-size: 2.5rem; z-index: 3; }
.chef { left: 200px; top: 100px; font-size: 2rem; z-index: 5; animation: cooking 2s ease-in-out infinite; }
.pizza-slice { left: 100px; top: 60px; font-size: 1.8rem; z-index: 6; animation: spin 4s linear infinite; }
.ingredient-tomato { left: 250px; top: 180px; font-size: 1.5rem; z-index: 2; }
.ingredient-cheese { left: 300px; top: 160px; font-size: 1.5rem; z-index: 2; }
.ingredient-pepperoni { left: 80px; top: 190px; font-size: 1.3rem; z-index: 2; }
.pizza-box { right: 80px; top: 150px; font-size: 2rem; z-index: 3; }
.kitchen-smoke { left: 60px; top: 50px; font-size: 1.5rem; z-index: 7; animation: float 3s ease-in-out infinite; }
.customer { right: 150px; top: 120px; font-size: 2rem; z-index: 4; animation: waiting 3s ease-in-out infinite; }

@keyframes cooking {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-10px) scale(1.1); opacity: 1; }
}

@keyframes waiting {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.scene-element.filtered {
    opacity: 0;
    transform: scale(0.3) translateY(20px);
    filter: blur(5px) drop-shadow(0 0 0 transparent);
    pointer-events: none;
}

.scene-element:hover:not(.filtered) {
    transform: scale(1.15);
    z-index: 15;
    filter: drop-shadow(3px 3px 8px rgba(0,0,0,0.5));
}

.filter-controls {
    margin-top: 0.5rem;
}

.filter-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 0.8rem;
}

.filter-btn.active {
    background: #ffd700;
    color: #333;
}

/* Tips Demo */
.tips-container {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 1rem;
    position: relative;
    min-height: 380px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tips-container.active {
    display: block;
}

.game-scenario {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    font-size: 1.1rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    transform: translateX(-40px);
}

.tip-bubble {
    position: absolute;
    background: #ffd700;
    color: #333;
    padding: 15px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    max-width: 220px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    z-index: 15;
    text-align: center;
    line-height: 1.4;
}

.tip-bubble.show {
    opacity: 1;
    transform: scale(1);
}

.tip-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #ffd700;
}

/* Posicionamento das dicas centralizadas no topo */
#tipBubble1 {
    top: 15px;
    left: 5%;
}

#tipBubble2 {
    top: 125px;
    right: 5%;
}

/* Modal de Contato */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #666;
    font-size: 1rem;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #e0e0e0;
}

.btn-send {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive para o modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-send {
        width: 100%;
    }
}
