/* Root Variables */
:root {
    --primary-color: #dc2626;
    --secondary-color: #16a34a;
    --accent-color: #ffffff;
    --background-dark: #000000;
    --background-darker: #000000;
    --text-light: #ffffff;
    --text-gray: #888888;
    --red-primary: #dc2626;
    --red-darker: #991b1b;
    --green-primary: #16a34a;
    --green-darker: #15803d;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #dc2626, #991b1b);
    --gradient-secondary: linear-gradient(135deg, #16a34a, #15803d);
    --gradient-accent: linear-gradient(135deg, #ffffff, #f3f4f6);
    --neon-blue: #00ffff;
    --neon-pink: #ff0080;
    --neon-green: #00ff00;
    --neon-yellow: #ffff00;
}

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

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container and Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.neon-text {
    color: var(--red-primary);
    text-shadow: 
        0 0 10px var(--red-primary),
        0 0 20px var(--red-primary),
        0 0 30px var(--red-primary);
    animation: text-flicker 3s ease-in-out infinite;
}

/* Enhanced glow and pulse animations */
@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 5px var(--red-primary), 0 0 10px var(--red-primary); 
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px var(--red-primary), 0 0 30px var(--red-primary); 
        transform: scale(1.02);
    }
}

@keyframes text-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px var(--red-primary),
            0 0 10px var(--red-primary),
            0 0 20px var(--red-primary);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

@keyframes border-glow {
    0%, 100% { border-color: var(--red-primary); }
    50% { border-color: var(--green-primary); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.neon-text {
    color: white;
    text-shadow: 
        0 0 5px var(--red-primary),
        0 0 10px var(--red-primary),
        0 0 20px var(--red-primary);
    animation: neon-flicker 4s ease-in-out infinite;
}

@keyframes neon-flicker {
    0%, 85%, 100% {
        color: white;
        text-shadow: 
            0 0 5px var(--red-primary),
            0 0 10px var(--red-primary),
            0 0 20px var(--red-primary);
        opacity: 1;
    }
    5%, 15% {
        color: #ccc;
        text-shadow: 
            0 0 2px var(--red-primary);
        opacity: 0.8;
    }
    10% {
        color: white;
        text-shadow: 
            0 0 8px var(--red-primary),
            0 0 15px var(--red-primary);
        opacity: 1;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--red-primary);
}

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

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--red-primary);
    text-shadow: 
        0 0 10px var(--red-primary),
        0 0 20px var(--red-primary);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--red-primary);
    text-shadow: 0 0 10px var(--red-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--red-primary);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 10px var(--red-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-darker);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/assets/hero-bg.jpg') center/cover no-repeat;
    background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    animation: hero-pulse 6s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.3) 0%, 
        rgba(0, 0, 0, 0.9) 50%, 
        rgba(22, 163, 74, 0.3) 100%
    );
    backdrop-filter: blur(1px);
}

@keyframes hero-pulse {
    0% { 
        background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    }
    100% { 
        background-image: linear-gradient(135deg, #2a1a3e 0%, #26314e 50%, #1f1f33 100%);
    }
}

.dynamic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.dynamic-particles::before,
.dynamic-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--red-primary);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--red-primary);
    animation: float-diagonal 12s ease-in-out infinite;
}

.dynamic-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dynamic-particles::after {
    top: 70%;
    right: 15%;
    animation-delay: 6s;
    background: var(--green-primary);
    box-shadow: 0 0 30px var(--green-primary);
}

@keyframes float-diagonal {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translate(30px, -20px) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translate(-20px, 30px) scale(0.8);
        opacity: 0.6;
    }
    75% { 
        transform: translate(40px, 10px) scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--red-primary);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
}

.feature i {
    color: var(--red-primary);
    font-size: 1.2rem;
}

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

/* Neon Buttons */
.neon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.neon-btn.primary {
    background: var(--red-primary);
    color: white;
    border: none;
}

.neon-btn.primary:hover {
    background: #ff073a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.neon-btn.secondary {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
}

.neon-btn.secondary:hover {
    background: rgba(22, 163, 74, 0.1);
    box-shadow: 0 0 30px rgba(22, 163, 74, 0.6);
    transform: translateY(-2px);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

.section-title .neon-text {
    color: white;
    text-shadow: 
        0 0 5px var(--red-primary),
        0 0 10px var(--red-primary),
        0 0 20px var(--red-primary);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--background-dark);
}

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

.service-new-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-new-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-new-card:hover::before {
    left: 100%;
}

.service-new-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.service-new-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-new-icon {
    width: 80px;
    height: 80px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-new-card:hover .service-new-icon {
    background: var(--green-primary);
    transform: scale(1.1);
}

.service-new-title h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.service-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
}

.service-new-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-new-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.specs-new-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-new-item {
    background: rgba(220, 38, 38, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.spec-new-item i {
    display: block;
    color: var(--red-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.spec-new-item span {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.price-new-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-new-item {
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.price-value {
    color: var(--red-primary);
    font-weight: 700;
    font-size: 1rem;
}

.features-new-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-new-item {
    background: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.feature-new-item i {
    color: var(--green-primary);
    font-size: 1.1rem;
}

.feature-new-item span {
    color: white;
    font-size: 0.9rem;
}

.service-new-action {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-new-badge {
    background: var(--red-primary);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.new-action-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid var(--red-primary);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.new-action-btn:hover {
    background: var(--red-primary);
    color: white;
    text-decoration: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    border-color: var(--red-primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--red-primary);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(22, 163, 74, 0.2);
    color: var(--green-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--green-primary);
}

/* Menu Section */
.menu {
    padding: 5rem 0;
    background: var(--background-darker);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--text-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.menu-tab.active,
.menu-tab:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-green);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(0, 255, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-item h3 {
    color: var(--neon-green);
    font-size: 1.2rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
}

.menu-item p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.menu-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 0, 0.2);
    color: var(--neon-yellow);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--neon-yellow);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--background-dark);
}

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

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-placeholder.gaming {
    border-color: var(--red-primary);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(153, 27, 27, 0.1));
}

.gallery-placeholder.hookah {
    border-color: var(--green-primary);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(21, 128, 61, 0.1));
}

.gallery-placeholder.food {
    border-color: var(--green-primary);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(21, 128, 61, 0.1));
}

.gallery-placeholder.interior {
    border-color: var(--red-primary);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(153, 27, 27, 0.1));
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-placeholder.gaming i {
    color: var(--red-primary);
}

.gallery-placeholder.hookah i {
    color: var(--green-primary);
}

.gallery-placeholder.food i {
    color: var(--green-primary);
}

.gallery-placeholder.interior i {
    color: var(--red-primary);
}

.gallery-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--background-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    space-y: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--red-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(220, 38, 38, 0.05);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: var(--red-primary);
    width: 60px;
    text-align: center;
}

.contact-details h3 {
    color: var(--red-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
}

.contact-details a {
    color: var(--green-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--red-primary);
    text-shadow: 0 0 10px var(--red-primary);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-map {
    border: 2px solid var(--red-primary);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

#map {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
}

/* Gaming Card Pricing - New Design */
.gaming-card {
    position: relative;
}

.price-info {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-badge {
    background: linear-gradient(135deg, var(--red-primary), #ff4757);
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 0.8rem;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.price-from {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.price-detail {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.2rem;
}

.price-btn {
    width: 100%;
    padding: 0.7rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--green-primary);
    border-radius: 8px;
    color: var(--green-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.price-btn:hover {
    background: rgba(22, 163, 74, 0.1);
    box-shadow: 0 0 15px rgba(22, 163, 74, 0.3);
    transform: translateY(-1px);
}

.pricing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pricing-modal.active {
    opacity: 1;
    visibility: visible;
}

.pricing-modal .pricing-content {
    background: var(--background-dark);
    border: 2px solid var(--red-primary);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h4 {
    color: var(--red-primary);
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 0 10px var(--red-primary);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--red-primary);
}

.pricing-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tariff-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tariff-day {
    color: var(--green-primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rate {
    background: rgba(220, 38, 38, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    color: var(--red-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.packages {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.pkg {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.pkg:last-child {
    border-bottom: none;
}

.vip-rate {
    background: linear-gradient(135deg, var(--red-primary), #ff4757);
    padding: 0.7rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
}

.pricing-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pricing-footer small {
    color: var(--text-gray);
    font-style: italic;
}

#vk_groups {
    width: 100% !important;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

#vk_groups iframe {
    width: 100% !important;
    border-radius: 15px;
}

/* Footer */
.footer {
    background: var(--background-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--red-primary);
}

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

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-text p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--red-primary);
    border-radius: 50%;
    color: var(--red-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(220, 38, 38, 0.2);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        height: 100vh;
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .services-new-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-new-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .service-new-header {
        margin-bottom: 1rem;
    }
    
    .service-new-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-new-title h3 {
        font-size: 1.3rem;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        flex-direction: column;
    }

    .pricing-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rate-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    section {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        padding: 0 15px;
    }
    
    .btn {
        max-width: 90%;
        text-align: center;
    }
    
    .rate-item {
        max-width: 100%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-top: 3px solid var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
