/* Custom styles for Raven Estate */

/* Combat background animation */
.combat-bg {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Flash effect for logo */
.logo-flash {
    animation: flash 2s infinite;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073;
    font-family: 'Orbitron', sans-serif;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Game container styles */
.game-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.game-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* Language selector styles */
.language-selector {
    display: flex;
    gap: 1rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Section styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Feature card styles */
.feature-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Screenshot card styles */
.screenshot-card {
    @apply bg-gray-800 rounded-lg overflow-hidden shadow-lg transition-transform duration-300 hover:transform hover:scale-105;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* Review card styles */
.review-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
    color: #e60073;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    .language-selector {
        flex-wrap: wrap;
    }

    .screenshot-card {
        height: 200px;
    }
}

/* Fullscreen button styles */
#fullscreenBtn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: #e60073;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#fullscreenBtn:hover {
    background: #ff0080;
}

/* Footer styles */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    margin-top: 4rem;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e60073;
} 