* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
	width: 100px;
	height: 100px;
}

.logo-icon {
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    border-radius: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Game Card */
.game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.game-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.game-card p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-center {
    text-align: center;
    margin-top: 20px;
}

/* Content Sections */
.content-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0 15px;
}

.content-section p, .content-section li {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 20px;
    margin-top: 15px;
}

.content-section li {
    margin-bottom: 10px;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
}

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* Game Page */
.game-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-header {
    text-align: center;
    margin-bottom: 30px;
}

.game-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: #000;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 20px 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p, .footer-section a {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.responsible-gaming {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.responsible-gaming img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.responsible-gaming img:hover {
    transform: scale(1.1);
}

.contact-form {
    display: grid;
    gap: 24px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(6, 13, 34, 0.45);
    color: #ffffff;
    font-size: 15px;
    transition: border 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(240, 147, 251, 0.9);
    box-shadow: 0 0 0 4px rgba(240, 147, 251, 0.25);
    background: rgba(6, 13, 34, 0.65);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
    background-position: calc(100% - 28px) calc(50% + 4px), calc(100% - 20px) calc(50% + 4px);
    background-size: 8px 8px;
    background-repeat: no-repeat;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border 0.3s ease, background 0.3s ease;
}

.checkbox-label:hover {
    border-color: rgba(240, 147, 251, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.checkbox-label input {
    margin-top: 3px;
    accent-color: #f5576c;
}

.checkbox-label a {
    color: #f093fb;
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 217, 100, 0.15);
    border: 1px solid rgba(76, 217, 100, 0.4);
    color: #9ef3b1;
}

.form-message.error {
    display: block;
    background: rgba(255, 69, 97, 0.12);
    border: 1px solid rgba(255, 69, 97, 0.4);
    color: #ff99ab;
}

.age-badge {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.compliance-popup {
    position: fixed;
    background: rgba(14, 28, 66, 0.92);
    backdrop-filter: blur(18px);
    color: #ffffff;
    border-radius: 24px;
    padding: 32px 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 40px 80px rgba(10, 14, 35, 0.65);
    max-width: 480px;
    z-index: 2001;
    opacity: 0;
    transform: translate(-50%, calc(-50% + 20px));
    left: 50%;
    top: 50%;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.compliance-popup.visible {
    opacity: 1;
    transform: translate(-50%, -50%);
    visibility: visible;
    pointer-events: auto;
}

.compliance-popup--cookie {
    left: auto;
    right: 24px;
    top: auto;
    bottom: 24px;
    transform: translateY(20px);
    max-width: 420px;
}

.compliance-popup--cookie.visible {
    transform: translateY(0);
}

.compliance-popup__badge {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 24px;
    box-shadow: 0 20px 40px rgba(245, 87, 108, 0.45);
}

.compliance-popup h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.compliance-popup__text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.compliance-popup__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.compliance-popup__btn {
    flex: 1 1 160px;
    text-align: center;
}

.compliance-popup__support {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.75;
}

.compliance-popup__support a {
    color: #f093fb;
    text-decoration: underline;
    font-weight: 600;
}

.btn-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.compliance-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 26, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.compliance-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .checkbox-label {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .game-iframe {
        height: 400px;
    }

    .compliance-popup {
        max-width: calc(100% - 32px);
        padding: 28px;
        left: 50%;
        transform: translate(-50%, calc(-50% + 20px));
    }

    .compliance-popup--cookie {
        left: 50%;
        right: auto;
        bottom: 16px;
        transform: translate(-50%, 20px);
    }

    .compliance-popup--cookie.visible {
        transform: translate(-50%, 0);
    }

    .compliance-popup__actions {
        flex-direction: column;
    }

    .compliance-popup__btn {
        width: 100%;
    }
}

