:root {
    --bg-color: #07000e;
    --primary-neon: #a200ff;
    --secondary-neon: #d500ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(20, 0, 30, 0.6);
    --glass-border: rgba(162, 0, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-left: 1px solid var(--glass-border);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-neon);
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-neon);
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.nav-site3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    background: rgba(7, 0, 14, 0.8);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(162, 0, 255, 0.2);
}

.nav-site3 .logo {
    display: flex;
    align-items: center;
}

.nav-site3 .logo img {
    height: 27px; 
    display: block;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.center-logo-static {
    max-width: 600px; 
    margin: 0 auto 0px auto; 
    display: block;
    filter: drop-shadow(0 0 20px var(--primary-neon)); 
    position: relative;
    z-index: 3;
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-top: 35px; 
    margin-bottom: 30px;
    color: #ccc;
    font-weight: 300; 
    position: relative;
    z-index: 2;
}

.features-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.features-badges span {
    background: var(--glass-bg);
    border: 1px solid rgba(162, 0, 255, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 10px rgba(162, 0, 255, 0.1);
}

.features-badges span i {
    color: var(--secondary-neon);
}

.hero-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-center-mixed {
    display: inline-block;
    padding: 20px 60px; 
    font-size: 1.5rem; 
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--primary-neon);
    border-radius: 5px;
    transition: 0.3s;
    animation: pulsateGlow 2s infinite alternate;
}

@keyframes pulsateGlow {
    0% {
        box-shadow: 0 0 10px var(--primary-neon) inset, 0 0 10px var(--primary-neon);
        text-shadow: 0 0 5px #fff;
    }
    100% {
        box-shadow: 0 0 20px var(--primary-neon) inset, 0 0 40px var(--primary-neon);
        text-shadow: 0 0 10px #fff, 0 0 20px var(--primary-neon), 0 0 40px var(--primary-neon);
    }
}

.btn-center-mixed:hover {
    background: var(--primary-neon);
    transform: scale(1.05);
}

.section {
    padding: 80px 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 900;
    color: #fff;
}

.section-title span {
    color: #ffffff;
    font-weight: 900;
    text-shadow:
        0 0 5px #fff,
        0 0 10px var(--primary-neon),
        0 0 20px var(--primary-neon),
        0 0 40px var(--primary-neon);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .hardware-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .hardware-grid {
        grid-template-columns: 1fr;
    }
}

.hard-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hard-card i {
    font-size: 3rem;
    color: var(--primary-neon);
    margin-bottom: 15px;
}

.hard-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.zone-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.zone-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.premium-border {
    border: 2px solid var(--primary-neon);
    box-shadow: 0 0 30px rgba(162, 0, 255, 0.2);
}

.zone-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.zone-info {
    padding: 30px;
}

.zone-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-neon);
    font-weight: 900;
}

.badge {
    font-size: 1rem;
    background: var(--primary-neon);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

.zone-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.zone-info li {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.zone-info li i {
    color: var(--primary-neon);
    width: 25px;
}

.price-table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.9rem;
}

.price-table th, .price-table td {
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table th {
    color: var(--primary-neon);
    font-weight: 600;
}

.price-table tr.night {
    color: var(--secondary-neon);
    font-weight: bold;
    border-bottom: none;
}

.contact-container {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--primary-neon);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.contact-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: 0.3s;
    background: rgba(0,0,0,0.5);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(162,0,255,0.3);
}

.contact-link:hover {
    background: var(--primary-neon);
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(162, 0, 255, 0.5);
}

.contact-link i {
    color: var(--secondary-neon);
    margin-right: 10px;
}

.map-container {
    flex: 1;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-link {
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: 0.3s;
}

.address-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.address-link:hover .address-text {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
    transform: scale(1.02);
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 2px solid var(--primary-neon);
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: 0 0 15px rgba(162, 0, 255, 0.3);
    backdrop-filter: blur(5px);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: var(--primary-neon);
    box-shadow: 0 0 25px var(--primary-neon);
    transform: translateY(-5px) scale(1.1);
}

@media (max-width: 768px) {
    .nav-site3 { display: none; }
    .nav-links { display: none; }
    
    .center-logo-static { max-width: 280px; }
    
    .subtitle { margin-top: 15px; } 
    
    .section-title { font-size: 2.5rem; }
    .contact-container { flex-direction: column; }
    
    .contact-info { padding: 30px; }

    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}