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

:root {
    --primary-color: #5DADE2;
    --secondary-color: #AED6F1;
    --accent-color: #F8E5D1;
    --dark-bg: #F5F7FA;
    --card-bg: #FFFFFF;
    --text-light: #2C3E50;
    --text-dark: #1A252F;
    --text-gray: #5D6D7E;
    --gradient-1: linear-gradient(135deg, #5DADE2 0%, #AED6F1 100%);
    --gradient-2: linear-gradient(135deg, #F8E5D1 0%, #E8D5C4 100%);
    --gradient-3: linear-gradient(135deg, #5DADE2 0%, #85C1E9 100%);
    --shadow-soft: 0 4px 15px rgba(93, 173, 226, 0.15);
    --shadow-medium: 0 8px 25px rgba(93, 173, 226, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #F5F7FA 0%, #EBF5FB 50%, #F8E5D1 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(93, 173, 226, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(93, 173, 226, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(93, 173, 226, 0.5);
    animation: fadeInUp 1s ease;
}

.glitch {
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #FFFFFF;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #FFFFFF;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator span {
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: scrollDown 2s infinite;
}

/* Video Overview Section - OPTIMIZED */
.video-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #EBF5FB, #D6EAF8, #AED6F1);
}

/* Video Preview Thumbnail */
.video-preview-container {
    max-width: 600px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(93, 173, 226, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(93, 173, 226, 0.3);
}

.video-thumbnail:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(93, 173, 226, 0.5);
    border-color: var(--primary-color);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.video-thumbnail:hover .video-play-button {
    background: rgb(255, 0, 0);
    transform: scale(1.1);
}

.video-play-button i {
    font-size: 2.5rem;
    color: white;
    margin-left: 8px;
}

.video-duration {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.video-modal-content {
    position: relative;
    z-index: 10000;
    width: 90%;
    max-width: 400px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 для вертикального видео */
    height: 0;
    overflow: hidden;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .video-preview-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .video-modal-content {
        width: 95%;
        max-width: 350px;
    }
    
    .video-play-button {
        width: 80px;
        height: 80px;
    }
    
    .video-play-button i {
        font-size: 2rem;
    }
}

/* YouTube Shorts в галерее */
.youtube-shorts-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.youtube-shorts-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-shorts-thumb .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.youtube-shorts-thumb:hover .play-button {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.overview-video {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: contain;
    background: #FFFFFF;
}

/* Section Common Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
}

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

.about-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(93, 173, 226, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    box-shadow: var(--shadow-soft);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

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

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.stat-label.stat-highlight {
    color: #FFD700;
    font-weight: 600;
    text-transform: uppercase;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #F8E5D1, #FCF3E4);
}

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

.feature-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(93, 173, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.feature-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.feature-card.featured-special {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.feature-card.featured-special:hover {
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.feature-card.featured-special .feature-icon {
    color: #FFD700;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Package Links */
.package-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}

.package-link:hover {
    color: var(--primary-color);
    text-decoration-thickness: 3px;
}

/* Custom Package */
.package-card.custom-package {
    background: linear-gradient(135deg, rgba(248, 229, 209, 0.3), rgba(232, 213, 196, 0.3));
    border: 2px solid var(--accent-color);
}

.package-card.custom-package:hover {
    border-color: #E8D5C4;
    box-shadow: 0 20px 50px rgba(248, 229, 209, 0.4);
}

.package-badge.custom {
    background: linear-gradient(135deg, #F8E5D1 0%, #E8D5C4 100%);
    color: #2C3E50;
}

.price-text {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-weight: 600;
}

.package-features .highlight {
    background: rgba(248, 229, 209, 0.3);
    padding: 0.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.oferta-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.oferta-link:hover {
    color: #3498DB;
}

/* Games Section */
.games {
    background: linear-gradient(135deg, #EBF5FB, #D6EAF8);
}

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

.game-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(93, 173, 226, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.game-card:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.additional-services {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(93, 173, 226, 0.2);
}

.additional-services h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(93, 173, 226, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(93, 173, 226, 0.2);
    transform: translateX(5px);
}

.service-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, #FFFFFF, #F5F7FA);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(93, 173, 226, 0.3);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.package-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.05), rgba(174, 214, 241, 0.05));
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-3);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-badge.premium {
    background: var(--gradient-2);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(93, 173, 226, 0.2);
}

.package-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.package-price {
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-currency {
    font-size: 2rem;
    color: var(--text-gray);
}

.price-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.package-features .fa-crown {
    color: var(--accent-color);
}

.package-features .discount {
    color: var(--secondary-color);
    font-weight: 600;
}

.package-extras {
    background: rgba(93, 173, 226, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-color);
}

.package-extras p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #F8E5D1, #FCF3E4);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-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;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* 360 Panorama Badge */
.panorama-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #5DADE2, #3498DB);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(93, 173, 226, 0.4);
    animation: pulse 2s infinite;
}

.gallery-item.panorama-360 {
    grid-column: span 2;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.3);
}

.gallery-item.panorama-360 img {
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #EBF5FB, #AED6F1);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-centered {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-info-centered .contact-item {
    display: inline-block;
    margin: 1rem 2rem;
    text-align: center;
}

.contact-info-centered .contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info-centered .contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-info-centered .contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.contact-info-centered .contact-item a:hover {
    color: var(--primary-color);
}

.whatsapp-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 3px solid #25D366;
}

.whatsapp-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-large i {
    font-size: 1.8rem;
}

.whatsapp-note {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(93, 173, 226, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-5px);
}

/* Form Styles */
.contact-form {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(93, 173, 226, 0.2);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #F8F9FA;
    border: 2px solid rgba(93, 173, 226, 0.2);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(93, 173, 226, 0.2);
    background: #FFFFFF;
}

.form-group select option {
    background: #FFFFFF;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: #FFFFFF;
    box-shadow: var(--shadow-soft);
}

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

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 1.5rem;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #FFFFFF;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn i {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #5DADE2, #3498DB);
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid rgba(93, 173, 226, 0.3);
}

.footer p {
    color: #FFFFFF;
    margin: 0.5rem 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.modal-content img,
.modal-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #FFFFFF;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #FFFFFF;
    background: rgba(93, 173, 226, 0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-nav:hover {
    background: var(--primary-color);
    color: #FFFFFF;
}

.modal-prev {
    left: 2rem;
}

.modal-next {
    right: 2rem;
}

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

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(93, 173, 226, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-grid,
    .features-grid,
    .games-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info-centered .contact-item {
        display: block;
        margin: 1.5rem 0;
    }
    
    .whatsapp-cta {
        padding: 1.5rem;
    }
    
    .btn-whatsapp-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .modal-prev {
        left: 1rem;
    }
    
    .modal-next {
        right: 1rem;
    }
    
    /* Optimize video for mobile */
    .overview-video {
        height: auto;
        min-height: 250px;
    }
}