/* Lucky Forest - Šťastný Les Styles */

.forest-gradient {
    background: linear-gradient(135deg, #0f5132 0%, #198754 50%, #20c997 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 1rem;
    z-index: 999;
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: #6b7280;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #4b5563;
}

.game-frame {
    width: 100%;
    height: 100vh;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-height: 600px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tree-animation {
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-input {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.6);
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-input::placeholder {
    color: rgba(156, 163, 175, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-frame {
        height: 80vh;
        min-height: 400px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-frame {
        height: 70vh;
        min-height: 300px;
    }

    .feature-card {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .tree-animation {
        animation: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover,
    .feature-card:hover {
        transform: none;
    }
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.form-input:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .modal,
    .cookie-banner,
    .contact-form {
        display: none !important;
    }
}