/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Altersverifikation */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-modal {
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #cc0033;
    box-shadow: 0 0 50px rgba(204, 0, 51, 0.5);
    max-width: 500px;
    margin: 0 20px;
}

.age-modal h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.age-modal p {
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.6;
}

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

/* Neon-Effekte */
.neon-text {
    color: #aa002a;
    text-shadow: 
        0 0 3px #aa002a,
        0 0 6px #aa002a,
        0 0 9px #aa002a,
        0 0 12px #aa002a;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.white-text {
    color: #e0e0e0;
    text-shadow: 
        0 0 3px #ffffff,
        0 0 6px #ffffff,
        0 0 9px #ffffff,
        0 0 12px #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.red-neon-text {
    color: #ff3355;
    text-shadow: 
        0 0 5px #ff3355,
        0 0 10px #ff3355,
        0 0 15px #ff3355,
        0 0 20px #ff3355,
        0 0 25px #ff0033;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    animation: redGlow 2s ease-in-out infinite alternate;
}

.white-neon-animated {
    color: #ffffff;
    text-shadow: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

@keyframes redGlow {
    0% {
        text-shadow: 
            0 0 5px #ff3355,
            0 0 10px #ff3355,
            0 0 15px #ff3355,
            0 0 20px #ff3355,
            0 0 25px #ff0033;
    }
    100% {
        text-shadow: 
            0 0 8px #ff3355,
            0 0 16px #ff3355,
            0 0 24px #ff3355,
            0 0 32px #ff3355,
            0 0 40px #ff0033;
    }
}

@keyframes whiteNeonPulse {
    0%, 100% {
        text-shadow: 
            0 0 3px #ffffff,
            0 0 6px #ffffff,
            0 0 9px #ffffff,
            0 0 12px #ffffff,
            0 0 15px #ffffff;
        transform: translateY(0);
    }
    50% {
        text-shadow: 
            0 0 5px #ffffff,
            0 0 10px #ffffff,
            0 0 15px #ffffff,
            0 0 20px #ffffff,
            0 0 25px #ffffff;
        transform: translateY(-2px);
    }
}

.neon-button {
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, rgba(204, 0, 51, 0.1), rgba(255, 0, 102, 0.05));
    border: 3px solid #cc0033;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 20px rgba(204, 0, 51, 0.4),
        0 0 40px rgba(204, 0, 51, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 102, 0.6), rgba(0, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.neon-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #cc0033, #ff0066, #00ffff, #cc0033);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.neon-button:hover::before {
    left: 100%;
}

.neon-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 20px #cc0033,
        0 0 40px #cc0033,
        0 0 60px rgba(204, 0, 51, 0.8),
        0 0 100px rgba(255, 0, 102, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(204, 0, 51, 0.3);
    color: #ffffff;
    text-shadow: 
        0 0 10px #cc0033,
        0 0 20px #ff0066,
        0 0 30px rgba(255, 255, 255, 1);
    border-color: #ff0066;
}

.neon-button:hover::after {
    opacity: 1;
}

/* Button Icons Styling */
.neon-button i {
    font-size: 1.4rem;
    margin-right: 1rem;
}

/* Menu Label Styling */
.menu-label {
    font-size: 0.8rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.full-red-button {
    border-color: #cc0033;
    background: linear-gradient(135deg, #cc0033, #ff0044, #cc0033);
    color: #ffffff;
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    border-width: 3px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 25px rgba(204, 0, 51, 0.6),
        0 0 50px rgba(204, 0, 51, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

.full-red-button:hover {
    background: linear-gradient(135deg, #ff0044, #ff0066, #ff0044);
    border-color: #ff0066;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 30px #cc0033,
        0 0 60px #ff0044,
        0 0 90px rgba(255, 0, 102, 0.6),
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-shadow: 
        0 0 15px #ffffff,
        0 0 25px rgba(255, 0, 102, 0.8);
}

.full-white-button {
    border-color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #f0f8ff, #ffffff);
    color: #000000;
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    border-width: 3px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 255, 255, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(0, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.full-white-button:hover {
    background: linear-gradient(135deg, #ffffff, #00ffff, #ffffff);
    border-color: #00ffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 30px #ffffff,
        0 0 60px #00ffff,
        0 0 90px rgba(0, 255, 255, 0.6),
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
    color: #000000;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6);
}

.neon-button.confirm {
    background: linear-gradient(45deg, rgba(0, 255, 0, 0.2), rgba(0, 255, 0, 0.1));
    border-color: #00ff00;
}

.neon-button.confirm:hover {
    color: #00ff00;
    box-shadow: 
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 30px #00ff00;
}

.neon-button.deny {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    border-color: #ff0000;
}

.neon-button.deny:hover {
    color: #ff0000;
    box-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000;
}

.glow-text {
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.neon-icon {
    color: #cc0033;
    filter: drop-shadow(0 0 5px #cc0033);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #cc0033, #ffffff, #cc0033);
    z-index: 1000;
    transition: width 0.1s;
    box-shadow: 0 0 10px #cc0033;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(204, 0, 51, 0.3);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #aa002a;
    text-shadow: 
        0 0 5px #aa002a,
        0 0 10px #aa002a;
    line-height: 1;
}

.logo-sub {
    font-size: 1rem;
    color: #cccccc;
    text-align: center;
    margin-top: 3px;
    font-weight: 500;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #cc0033;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px #cc0033;
}

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

.nav-link:hover {
    color: #cc0033;
    text-shadow: 0 0 5px #cc0033;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #cc0033;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #cc0033;
}

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

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

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(204, 0, 51, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #cc0033;
    border-radius: 50%;
    animation: float 6s infinite linear;
    box-shadow: 0 0 10px #cc0033;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 98%,
        rgba(204, 0, 51, 0.1) 100%
    );
    background-size: 100% 4px;
    pointer-events: none;
    animation: scan 2s linear infinite;
    z-index: 2;
}

@keyframes scan {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
    transform: translateY(-50px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(5rem, 11vw, 9.5rem);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    margin-bottom: 1rem;
    margin-top: 150px;
    animation: pulse 0.5s infinite;
    white-space: nowrap;
    line-height: 1.1;
}

.hero-location {
    font-size: 0.6em;
    display: block;
    margin-top: 0.3rem;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 
            0 0 5px #ff3355,
            0 0 10px #ff3355,
            0 0 15px #ff3355,
            0 0 20px #ff3355,
            0 0 25px #ff0033;
    }
    50% {
        text-shadow: 
            0 0 8px #ff3355,
            0 0 16px #ff3355,
            0 0 24px #ff3355,
            0 0 32px #ff3355,
            0 0 40px #ff0033;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 196px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #cc0033, transparent);
    box-shadow: 0 0 10px #cc0033;
}

/* Cooperation Section */
.cooperation-section {
    background: linear-gradient(135deg, rgba(204, 0, 51, 0.05), rgba(0, 0, 0, 0.8));
    border-top: 1px solid rgba(204, 0, 51, 0.3);
    border-bottom: 1px solid rgba(204, 0, 51, 0.3);
}

.partner-title-image {
    text-align: center;
    margin-bottom: 3rem;
}

.partner-title-img {
    max-width: 400px;
    height: auto;
    margin: 0 auto;
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.cooperation-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(204, 0, 51, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cooperation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(204, 0, 51, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cooperation-card:hover::before {
    transform: translateX(100%);
}

.cooperation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 51, 0.3);
}

.partner-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: #ffffff;
    text-shadow: 0 0 15px #cc0033;
}

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

.cooperation-card p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1rem;
}

.partner-website {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #ffffff !important;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 5px #ffffff;
}

/* Live System */
.live-system {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.8));
}

.system-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.system-text {
    margin-bottom: 3rem;
}

.system-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.system-features {
    list-style: none;
    margin: 2rem 0;
}

.system-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Services */
.services {
    background: linear-gradient(135deg, rgba(204, 0, 51, 0.05), rgba(0, 0, 0, 0.9));
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(204, 0, 51, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(204, 0, 51, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 51, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Rooms */
.rooms {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.9));
}

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

.room-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(204, 0, 51, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(204, 0, 51, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.room-card:hover::before {
    transform: translateX(100%);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 51, 0.3);
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.room-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.room-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.room-info p {
    color: #cccccc;
    line-height: 1.6;
}

/* Ladies */
.ladies {
    background: linear-gradient(135deg, rgba(204, 0, 51, 0.05), rgba(0, 0, 0, 0.9));
}

.ladies-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ladies-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(204, 0, 51, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 0, 51, 0.2);
}

.info-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-item h3 {
    margin-bottom: 1rem;
    color: #cc0033;
    text-shadow: 0 0 10px #cc0033;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Reviews */
.reviews {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.9));
}

.review-rating {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 1rem;
}

.stars {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(204, 0, 51, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 0, 51, 0.2);
}

.review-stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(204, 0, 51, 0.1), rgba(0, 0, 0, 0.95));
    border-top: 1px solid rgba(204, 0, 51, 0.3);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #cc0033;
    text-shadow: 0 0 5px #cc0033;
}

.contact-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #cc0033;
    text-shadow: 0 0 5px #cc0033;
}

.opening-hours h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.day-hours.special {
    background: rgba(204, 0, 51, 0.1);
    border: 1px solid rgba(204, 0, 51, 0.3);
}

.day {
    font-weight: 600;
}

.hours {
    color: #cccccc;
}

.day-hours.special .hours {
    color: #cc0033;
    text-shadow: 0 0 5px #cc0033;
}

.hours-note {
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(204, 0, 51, 0.3);
    color: #888;
}

.website-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.credit-link {
    color: #cc0033;
    text-decoration: none;
    transition: all 0.3s ease;
}

.credit-link:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #cc0033;
}

.footer-links {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(204, 0, 51, 0.2);
    text-align: center;
}

.footer-legal-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.footer-legal-link:hover {
    color: #cc0033;
    text-shadow: 0 0 5px #cc0033;
}

.separator {
    color: #666;
    margin: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 4rem;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 195px;
    }
    
    .neon-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .ladies-info {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .age-modal {
        padding: 2rem;
        margin: 0 1rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
        padding: 0 1rem;
    }

    .neon-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .neon-button i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .hero-buttons {
        margin-top: 155px;
    }

    .service-card,
    .room-card,
    .cooperation-card {
        padding: 1.5rem;
    }

    .rating-number {
        font-size: 3rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .neon-button:hover {
        transform: none;
    }
    
    .neon-button:active {
        transform: scale(0.98);
    }
    
    .service-card:hover,
    .room-card:hover,
    .cooperation-card:hover {
        transform: none;
    }
}

/* Large Mobile Screens */
@media (max-width: 600px) and (min-width: 481px) {
    .hero-buttons {
        margin-top: 175px;
    }
    
    .neon-button {
        max-width: 300px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .age-verification,
    .navbar,
    .particles,
    .scan-lines,
    .neon-button {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .neon-text {
        color: black !important;
        text-shadow: none !important;
    }
}