/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #111111; /* Darker black background */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.9) !important; /* Darker header */
    border-bottom: 2px solid #ff8c00; /* Orange border */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    min-height: 80px;
}

/* Logo container */
.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}

/* Game logo */
.game-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #111111;
    border: 2px solid #ff8c00;
    border-radius: 50%;
    margin-right: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.game-logo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.logo-text {
    color: #ff8c00;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

.logo-text:first-child {
    margin-right: -5px;
}

/* Header content */
.header-content {
    display: flex;
    flex-direction: column;
}

/* Game title in header */
h1.text-2xl.font-bold.text-yellow-400 {
    color: #ff8c00 !important; /* Orange color for title */
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

/* Header description */
header p {
    color: #ff8c00;
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

/* Language selector container */
.language-selector {
    margin-left: auto;
}

/* Game section */
.game-section {
    margin-top: 4rem;
    height: calc(100vh - 4rem);
    overflow: hidden;
    position: relative;
}

/* Game container */
.game-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Make game iframe icon larger */
#gameFrame {
    width: 100%;
    height: 100%;
    border: none; /* Remove orange border */
    border-radius: 8px;
}

/* Sections */
.section {
    padding: 4rem 0;
    background-color: #111111; /* Dark background */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff8c00; /* Orange color for headers */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.125rem;
    color: #cccccc; /* Lighter text */
}

/* Cards */
.card {
    background-color: #1a1a1a; /* Darker card background */
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ff8c00; /* Orange border for cards */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2); /* Orange shadow on hover */
    border-color: #ffa500; /* Lighter orange on hover */
}

.card-content {
    text-align: center;
}

/* Feature icons */
.feature-icon {
    width: 3.5rem; /* Larger icons */
    height: 3.5rem; /* Larger icons */
    margin: 0 auto 1rem;
    color: #ff8c00; /* Orange color for icons */
}

/* Feature titles */
.feature-title {
    color: #ff8c00; /* Orange color for titles */
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Feature descriptions */
.feature-description {
    color: #cccccc; /* Lighter text */
}

/* Review cards */
.review-stars {
    color: #ff8c00; /* Orange color for stars */
    font-size: 1.5rem; /* Larger stars */
    margin-bottom: 1rem;
}

.review-text {
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: #ff8c00; /* Orange color for author */
    font-weight: 500;
}

/* Language selector */
.language-selector select {
    background-color: #1a1a1a; /* Darker background */
    border: 1px solid #ff8c00; /* Orange border */
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.language-selector select:hover {
    background-color: #333333; /* Darker on hover */
    border-color: #ffa500; /* Lighter orange on hover */
}

/* Fullscreen button container */
.fullscreen-container {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
}

/* Fullscreen button */
#fullscreenBtn {
    background-color: #ff8c00; /* Orange background */
    color: #000000; /* Black text */
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#fullscreenBtn:hover {
    background-color: #ffa500; /* Lighter orange on hover */
}

#fullscreenBtn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

#fullscreenBtn:hover:after {
    transform: translateX(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .card {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-out;
}

/* Footer */
footer {
    background-color: #000000; /* Black background */
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 2px solid #ff8c00; /* Orange border */
}

footer p {
    color: #cccccc; /* Lighter text */
    margin: 0.5rem 0;
}

/* Grid layout improvements */
.grid {
    display: grid;
    gap: 1.5rem;
}

/* Add a subtle orange glow to cards on hover */
.card-hover:hover .feature-icon {
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.7));
}

/* Game Screenshots */
.screenshot-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

.screenshot-card img {
    border: 2px solid #ff8c00;
    transition: border-color 0.3s ease;
}

.screenshot-card:hover img {
    border-color: #ffa500;
} 