* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f172a;
    --bg-surface: #1e293b;
    --bg-surface-light: rgba(30, 41, 59, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --accent-orange: #ff6b35;
    --accent-orange-light: #ff8c5a;
    --accent-orange-dark: #e55a2b;
    --border-color: rgba(255, 107, 53, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--accent-orange);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--accent-orange);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(15, 23, 42, 0.9) 50%, rgba(255, 107, 53, 0.1) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.play-button {
    display: inline-block;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.05);
}

.play-button img {
    max-width: 200px;
    height: auto;
}

/* SECTION STYLES */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--text-primary);
}

.section-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

/* ABOUT SECTION */
.about-section {
    background-color: var(--bg-surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.about-text .highlight {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 18px;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    padding: 15px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-list .icon {
    font-size: 24px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
}

/* FEATURES SECTION */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-orange);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* GALLERY SECTION */
.gallery-section {
    background-color: var(--bg-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 2px solid var(--border-color);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--accent-orange);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* REVIEWS SECTION */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background-color: var(--bg-surface);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-orange);
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.review-author {
    color: var(--accent-orange);
    font-weight: 600;
    text-align: right;
}

.reviews-link {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-orange);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background-color: var(--accent-orange-light);
    transform: translateY(-2px);
}

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
}

/* PAGE CONTENT */
.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.main-image {
    margin-bottom: 40px;
    text-align: center;
}

.main-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
}

.content-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.content-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.content-list li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.8;
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 18px;
}

.content-text a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s;
}

.content-text a:hover {
    color: var(--accent-orange-light);
    text-decoration: underline;
}

.play-button-section {
    text-align: center;
    margin-top: 40px;
}

/* POLICY CONTENT */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.policy-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.policy-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.policy-content em {
    color: var(--text-secondary);
    font-style: italic;
}

.policy-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content ul li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.8;
}

/* REVIEWS LIST */
.reviews-list {
    max-width: 900px;
    margin: 0 auto;
}

.review-item {
    background-color: var(--bg-surface);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-orange);
}

.review-rating {
    color: var(--accent-orange);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.review-author {
    color: var(--accent-orange);
    font-weight: 600;
    text-align: right;
}

/* FOOTER */
footer {
    background-color: var(--bg-surface);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-logo a:hover {
    color: var(--accent-orange);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* COOKIE CONSENT POPUP */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-surface);
    border-top: 2px solid var(--accent-orange);
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.cookie-btn.accept {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}

.cookie-btn.accept:hover {
    background-color: var(--accent-orange-light);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
    background-color: var(--bg-surface-light);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

