* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-red: #8B0000;
    --color-dark-red: #5C0000;
    --color-sand: #C19A6B;
    --color-dark-sand: #8B7355;
    --color-black: #1a1a1a;
    --color-dark: #2d2d2d;
    --color-light: #f5f5f5;
    --color-gray: #666;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--color-black);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sandstorm Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(193, 154, 107, 0.03) 2px,
            rgba(193, 154, 107, 0.03) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(139, 0, 0, 0.03) 2px,
            rgba(139, 0, 0, 0.03) 4px
        ),
        radial-gradient(circle at 20% 50%, rgba(193, 154, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: sandstorm 20s infinite linear;
}

@keyframes sandstorm {
    0% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-10px) translateY(-5px); }
    66% { transform: translateX(10px) translateY(5px); }
    100% { transform: translateX(0) translateY(0); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    border-top: 3px solid var(--color-red);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--color-light);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 25px;
    border: 2px solid var(--color-sand);
    background: transparent;
    color: var(--color-light);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: var(--color-red);
    border-color: var(--color-red);
}

.cookie-btn.accept:hover {
    background: var(--color-sand);
    color: var(--color-black);
}

.cookie-btn.reject:hover {
    background: var(--color-dark);
    border-color: var(--color-red);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--color-red);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--color-red);
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-sand);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-red);
    transition: 0.3s;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-wrapper {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border: 3px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    object-fit: cover;
}

.hero-content {
    position: relative;
    text-align: left;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0 var(--color-black), 4px 4px 0 var(--color-sand);
    position: relative;
    display: inline-block;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--color-sand);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-sand);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-red);
    color: var(--color-light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    transition: all 0.3s;
    border: 2px solid var(--color-sand);
}

.cta-button:hover {
    background: var(--color-sand);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.5);
}

/* Game Section */
.game-section {
    padding: 80px 20px;
    background: rgba(45, 45, 45, 0.5);
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
}

.game-area {
    position: relative;
    width: 100%;
    height: 500px;
    border: 3px solid var(--color-red);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    overflow: hidden;
    background: var(--color-dark);
    margin-top: 2rem;
}

.game-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    display: block;
}

.game-score {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.9);
    padding: 15px 30px;
    border: 2px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    color: var(--color-red);
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
}

.set-marker {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--color-red);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 10;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
    pointer-events: auto;
    touch-action: manipulation;
}

.set-marker:hover {
    transform: scale(1.2);
}

.set-marker.clicked {
    animation: clickEffect 0.3s;
}

@keyframes clickEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* Chaos Section */
.chaos-section {
    padding: 80px 20px;
}

.chaos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chaos-image img {
    width: 100%;
    height: auto;
    border: 3px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.chaos-text h2 {
    color: var(--color-red);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.chaos-text p {
    color: var(--color-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: rgba(45, 45, 45, 0.5);
}

.section-title {
    font-size: 3rem;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-sand);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    margin-bottom: 1rem;
    border: 2px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(139, 0, 0, 0.2);
}

.faq-question h3 {
    color: var(--color-red);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-icon {
    font-size: 2rem;
    color: var(--color-sand);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-light);
    line-height: 1.8;
}

/* Page Hero */
.page-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(193, 154, 107, 0.2) 100%);
    border-bottom: 3px solid var(--color-red);
}

.page-title {
    font-size: 4rem;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 var(--color-black);
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--color-sand);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
}

.content-section:first-of-type {
    padding-top: 120px;
}

.content-section.alt-bg {
    background: rgba(45, 45, 45, 0.3);
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    height: auto;
    border: 3px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.content-text h2 {
    color: var(--color-red);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.content-text p {
    color: var(--color-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.columns-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.column h3 {
    color: var(--color-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.column p {
    color: var(--color-light);
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
}

.services-section:first-of-type {
    padding-top: 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border: 2px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--color-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card p {
    color: var(--color-light);
    line-height: 1.8;
}

/* Power Section */
.power-section {
    padding: 60px 20px;
    background: rgba(45, 45, 45, 0.3);
}

.power-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.power-image img {
    width: 100%;
    height: auto;
    border: 3px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.power-text h2 {
    color: var(--color-red);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.power-text p {
    color: var(--color-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
}

.gallery-section:first-of-type {
    padding-top: 120px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
    color: var(--color-light);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--color-red);
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-red);
    cursor: pointer;
    z-index: 10001;
    padding: 20px;
    transition: all 0.3s;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-sand);
    transform: translateY(-50%) scale(1.2);
}

.more-button {
    display: block;
    margin: 2rem auto;
    padding: 15px 40px;
    background: var(--color-red);
    color: var(--color-light);
    border: 2px solid var(--color-sand);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    transition: all 0.3s;
}

.more-button:hover {
    background: var(--color-sand);
    color: var(--color-black);
    transform: translateY(-3px);
}

.more-content {
    margin-top: 2rem;
}

.more-content p {
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
}

.contact-section:first-of-type {
    padding-top: 120px;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.contact-item strong {
    color: var(--color-red);
    font-size: 1.2rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-light);
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background: rgba(45, 45, 45, 0.3);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-preview {
    position: relative;
    width: 100%;
    height: 450px;
    border: 3px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    overflow: hidden;
}

.map-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-activate {
    padding: 15px 40px;
    background: var(--color-red);
    color: var(--color-light);
    border: 2px solid var(--color-sand);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    transition: all 0.3s;
}

.map-activate:hover {
    background: var(--color-sand);
    color: var(--color-black);
    transform: scale(1.1);
}

.map-embed {
    width: 100%;
    height: 450px;
    border: 3px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
}

/* Form Section */
.form-section {
    padding: 60px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border: 2px solid var(--color-sand);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-sand);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--color-dark);
    border: 2px solid var(--color-sand);
    color: var(--color-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--color-red);
    color: var(--color-light);
    border: 2px solid var(--color-sand);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.submit-button:hover {
    background: var(--color-sand);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.5);
}

/* Transport Section */
.transport-section {
    padding: 60px 20px;
    background: rgba(45, 45, 45, 0.3);
}

/* Thank You Section */
.thankyou-section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-content {
    max-width: 800px;
    text-align: center;
    padding: 2rem;
}

.thankyou-title {
    font-size: 4rem;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0 var(--color-black), 4px 4px 0 var(--color-sand);
}

.thankyou-message {
    font-size: 1.8rem;
    color: var(--color-sand);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: bold;
}

.thankyou-info {
    font-size: 1.2rem;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--color-red);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: var(--color-red);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-logo p {
    color: var(--color-light);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-sand);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.footer-links a:hover {
    color: var(--color-red);
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-dark-sand);
}

.footer-bottom p {
    color: var(--color-sand);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-bottom: 2px solid var(--color-red);
        z-index: 999;
        pointer-events: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .chaos-content,
    .content-block,
    .power-content {
        grid-template-columns: 1fr;
    }

    .content-block.reverse {
        direction: ltr;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .game-area {
        height: 400px;
    }

    .form-container {
        padding: 2rem;
    }
}

/* Modal Windows */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--color-black);
    margin: auto;
    padding: 0;
    border: 3px solid var(--color-red);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--color-red);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-red);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.modal-close:hover,
.modal-close:focus {
    color: var(--color-sand);
    border-color: var(--color-sand);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--color-red);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 2rem 3rem 1rem;
    margin: 0;
    border-bottom: 2px solid var(--color-sand);
}

.modal-body {
    padding: 2rem 3rem;
    color: var(--color-light);
}

.modal-body h3 {
    color: var(--color-red);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-body h4 {
    color: var(--color-sand);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-body ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.modal-body li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--color-light);
}

.modal-date {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-dark-sand);
    color: var(--color-sand);
    font-size: 0.9rem;
}

/* Scrollbar styling for modal */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--color-dark);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--color-red);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--color-sand);
}

@media screen and (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .modal.active {
        align-items: flex-start;
        padding-top: 20px;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 40px);
        margin: 0;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        padding: 1rem 1.5rem 0.75rem;
    }

    .modal-body {
        padding: 1rem 1.5rem;
    }

    .modal-close {
        top: 5px;
        right: 10px;
        font-size: 1.8rem;
        width: 32px;
        height: 32px;
    }
}

