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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E5E5E5;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Logo and Brand */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 50px;
    height: 50px;
}

.logo.small {
    width: 30px;
    height: 30px;
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00FFFF;
}

.age-badge {
    background: linear-gradient(135deg, #FFB000, #FF8C00);
    color: #1A1A1A;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
}

.age-badge.small {
    font-size: 0.7rem;
    padding: 2px 6px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0,255,255,0.1) 1px, transparent 1px),
        linear-gradient(rgba(0,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-brand {
    margin-bottom: 2rem;
}

.hero-description {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 2rem;
    max-width: 500px;
    width: 100%;
}

.hero-features span {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00FFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #00FFFF;
}

/* Warning Section */
.warning-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2A2A2A, #3A3A3A);
}

.warning-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 180, 0, 0.1);
    border: 2px solid #FFB000;
    border-radius: 12px;
    padding: 30px;
}

.warning-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.warning-content h2 {
    color: #FFB000;
    margin-bottom: 10px;
}

.warning-content p {
    color: #E5E5E5;
    font-size: 1.1rem;
}

/* Section Base Styles */
section {
    padding: 80px 0;
    text-align: center;
}

section:nth-child(even) {
    background: rgba(42, 42, 42, 0.3);
}

/* About Section */
.about h2 {
    color: #00FFFF;
    margin-bottom: 60px;
}

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

.about-card {
    background: rgba(42, 42, 42, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.about-card h3 {
    color: #00FFFF;
    margin-bottom: 15px;
}

/* Health Warning */
.health-warning {
    background: rgba(42, 42, 42, 0.8);
}

.health-content h2 {
    color: #FFB000;
    margin-bottom: 50px;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.health-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 180, 0, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FFB000;
}

.health-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Services Section */
.services h2 {
    color: #00FFFF;
    margin-bottom: 60px;
}

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

.service-card {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
}

.service-image {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #00FFFF;
    margin-bottom: 15px;
}

.service-card p {
    color: #B0B0B0;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFB000;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00FFFF, #0080FF);
    color: #1A1A1A;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00E6E6, #0070E0);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

/* Hygiene Section */
.hygiene {
    background: rgba(42, 42, 42, 0.4);
}

.hygiene h2 {
    color: #00FFFF;
    margin-bottom: 60px;
}

.hygiene-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hygiene-text h3 {
    color: #00FFFF;
    margin-bottom: 25px;
    text-align: left;
}

.hygiene-text ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.hygiene-text li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #E5E5E5;
}

.hygiene-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FFFF;
    font-weight: bold;
    font-size: 1.2rem;
}

.hygiene-visual {
    text-align: center;
}

.hygiene-icon {
    width: 200px;
    height: 200px;
}

/* Booking Section */
.booking h2 {
    color: #00FFFF;
    margin-bottom: 60px;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.booking-feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.booking-feature h3 {
    color: #00FFFF;
    margin-bottom: 15px;
}

.booking-feature p {
    color: #B0B0B0;
}

/* Tournaments Section */
.tournaments {
    background: rgba(42, 42, 42, 0.6);
}

.tournaments h2 {
    color: #FFB000;
    margin-bottom: 60px;
}

.tournament-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tournament-info h3 {
    color: #FFB000;
    margin-bottom: 25px;
    text-align: left;
}

.tournament-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.tournament-info li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #E5E5E5;
}

.tournament-info li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

.tournament-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFB000, #FF8C00);
    color: #1A1A1A;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tournament-cta:hover {
    background: linear-gradient(135deg, #FF9500, #E67300);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 176, 0, 0.3);
}

.tournament-visual {
    text-align: center;
}

.tournament-placeholder {
    width: 100%;
    height: 200px;
}

/* Profile Section */
.profile h2 {
    color: #00FFFF;
    margin-bottom: 60px;
}

.profile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.profile-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(42, 42, 42, 0.4);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.profile-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.profile-feature h3 {
    color: #00FFFF;
    margin-bottom: 10px;
}

.profile-feature p {
    color: #B0B0B0;
}

/* Contacts Section */
.contacts {
    background: rgba(42, 42, 42, 0.8);
}

.contacts h2 {
    color: #00FFFF;
    margin-bottom: 60px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-info h3 {
    color: #00FFFF;
    margin-bottom: 10px;
}

.contact-info a {
    color: #E5E5E5;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00FFFF;
}

.contact-info p {
    color: #B0B0B0;
    margin: 0;
}

/* Footer */
.footer {
    background: #1A1A1A;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand p {
    color: #B0B0B0;
    margin-top: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.link-group h4 {
    color: #00FFFF;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.link-group a {
    display: block;
    color: #B0B0B0;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #00FFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #888;
}

.footer-bottom p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .hero {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-brand {
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 300px;
    }
    
    .warning-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .warning-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-grid,
    .services-grid,
    .booking-features,
    .contact-grid,
    .profile-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hygiene-content,
    .tournament-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .health-item,
    .contact-item,
    .profile-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-features {
        max-width: 250px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .brand-info {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}