/* VynskaHQ Gaming Platform - Premium Entertainment CSS */
/* Unique Design with Emerald Green Theme & Modern Typography */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Primary Color Palette - Vampire/Gothic Theme */
    --primary-color: #8b0000;
    --primary-dark: #660000;
    --primary-light: #cc1414;
    --accent-color: #b71c1c;
    --accent-light: #ef5350;
    
    /* Secondary Colors */
    --secondary-color: #1a1a1a;
    --secondary-light: #2d2d2d;
    
    /* Text Colors */
    --text-dark: #f5f5f5;
    --text-medium: #cccccc;
    --text-light: #ffffff;
    --text-muted: #999999;
    
    /* Background Colors */
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-dark: #000000;
    
    /* Border & Shadow */
    --border-color: #8b0000;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    font-size: 16px;
    overflow-x: hidden;
}

/* Container */
.vynskahq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.vynskahq-header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.vynskahq-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.vynskahq-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
}

.vynskahq-logo:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.vynskahq-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.vynskahq-nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.vynskahq-nav-links a:hover,
.vynskahq-nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(139, 0, 0, 0.1);
    transform: translateY(-1px);
}

.vynskahq-nav-links i {
    font-size: 0.9rem;
}

/* Mobile Navigation */
.vynskahq-mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.vynskahq-mobile-toggle:hover {
    background-color: rgba(139, 0, 0, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-medium);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.vynskahq-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--primary-color);
}

.vynskahq-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.vynskahq-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--primary-color);
}

/* Hero Section */
.vynskahq-hero {
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
}

.vynskahq-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="gothic-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 10 0 L 10 20 M 0 10 L 20 10" fill="none" stroke="rgba(139,0,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23gothic-pattern)"/></svg>');
    opacity: 0.3;
}

.vynskahq-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.vynskahq-hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Buttons */
.vynskahq-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.vynskahq-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: var(--text-light);
}

.vynskahq-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.vynskahq-btn:hover::before {
    left: 100%;
}

/* Sections */
.vynskahq-section {
    padding: 5rem 0;
}

.vynskahq-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
    position: relative;
}

.vynskahq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Cards */
.vynskahq-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.vynskahq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.vynskahq-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.vynskahq-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.vynskahq-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Alert */
.vynskahq-alert {
    background: linear-gradient(135deg, #330000 0%, #1a0000 100%);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-light);
}

.vynskahq-alert i {
    color: #d97706;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vynskahq-alert strong {
    color: #92400e;
}

/* Game Frame */
.vynskahq-game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    background: var(--bg-secondary);
}

.vynskahq-game-container {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.vynskahq-game-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* Footer */
.vynskahq-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.vynskahq-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.vynskahq-footer h5 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.vynskahq-footer ul {
    list-style: none;
}

.vynskahq-footer ul li {
    margin-bottom: 0.5rem;
}

.vynskahq-footer ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.vynskahq-footer ul li a:hover {
    color: var(--accent-color);
}

.vynskahq-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
}

.age-modal-content {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    margin: auto;
}

.age-modal h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.age-modal p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-exit {
    background: transparent;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-exit:hover {
    background: var(--bg-secondary);
    transform: translateY(-1px);
}

/* Forms */
.vynskahq-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.vynskahq-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    outline: none;
}

.vynskahq-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vynskahq-mobile-toggle {
        display: flex;
    }
    
    .vynskahq-nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-medium);
        border-top: 1px solid var(--border-color);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }
    
    .vynskahq-nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .vynskahq-nav-links a {
        padding: 1rem;
        border-radius: var(--radius-md);
        width: 100%;
        justify-content: flex-start;
    }
    
    .vynskahq-hero {
        padding: 6rem 0 4rem;
    }
    
    .vynskahq-hero h1 {
        font-size: 2.5rem;
    }
    
    .vynskahq-hero p {
        font-size: 1.1rem;
    }
    
    .vynskahq-section {
        padding: 3rem 0;
    }
    
    .vynskahq-section h2 {
        font-size: 2rem;
    }
    
    .vynskahq-game-frame {
        height: 400px;
    }
    
    .age-modal-content {
        margin: 1rem auto;
        padding: 2rem;
        width: calc(100% - 2rem);
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
    
    .age-modal-buttons button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vynskahq-hero h1 {
        font-size: 2rem;
    }
    
    .vynskahq-section h2 {
        font-size: 1.75rem;
    }
    
    .vynskahq-game-frame {
        height: 350px;
    }
    
    .vynskahq-container {
        padding: 0 1rem;
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vynskahq-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}