/* PEREELOUS - Dark Theme Styles */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #151520;
    --bg-card: #1a1a2e;
    --accent-primary: #ff6b6b;
    --accent-secondary: #4ecdc4;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --border-color: #2a2a3e;
    --shadow: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
nav {
    background: rgba(26, 26, 46, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 2px solid var(--accent-primary);
    box-shadow: 0 4px 20px var(--shadow);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-primary);
    background: rgba(255, 107, 107, 0.1);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.container > * {
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(180deg, rgba(255, 107, 107, 0.1) 0%, transparent 100%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Game Container */
.game-container {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow);
    margin: 2rem auto 3rem;
    max-width: 1200px;
    border: 1px solid var(--border-color);
}

.game-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.game-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.fullscreen-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
}

.fullscreen-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.6);
}

.fullscreen-btn:active {
    transform: translateY(0);
}

/* Controls Section */
.controls-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin: 0 auto 3rem;
    max-width: 1200px;
    border: 1px solid var(--border-color);
}

.controls-section h2 {
    color: var(--accent-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.control-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-primary);
    transition: transform 0.3s ease;
}

.control-item:hover {
    transform: translateX(5px);
}

.control-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.control-item h3 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.control-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 3rem 2rem;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px var(--shadow);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.feature-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--accent-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Steam Widget Section */
.steam-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin: 0 auto 3rem;
    max-width: 1200px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.steam-section h2 {
    color: var(--accent-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.steam-widget-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* Reviews Section */
.reviews-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.2);
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.review-author {
    color: var(--text-muted);
    text-align: right;
    font-weight: 500;
}

/* Video Gallery */
.video-section {
    padding: 3rem 2rem;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.video-card video,
.video-card iframe {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.video-card h3 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.about-content h2 {
    color: var(--accent-secondary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content h3 {
    color: var(--accent-primary);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content ul {
    list-style: none;
    padding-left: 1rem;
}

.about-content ul li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-content ul li:before {
    content: "▶";
    color: var(--accent-primary);
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid var(--accent-primary);
    margin-top: 4rem;
}

footer p {
    color: var(--text-muted);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), #ff5252);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .controls-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    nav .logo {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .fullscreen-btn {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .game-container {
        padding: 1rem;
    }
}

