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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

a {
    color: #00ff88;
    text-decoration: none;
}

a:hover {
    color: #00cc6a;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button, .membership-button, .location-contact {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button.primary, .membership-button {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
}

.cta-button.primary:hover, .membership-button:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.cta-button.secondary:hover {
    background: #00ff88;
    color: #000000;
}

.location-contact {
    background: #1a1a1a;
    color: #00ff88;
    border: 1px solid #333333;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.location-contact:hover {
    background: #333333;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px dashed #444444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.brand-name {
    font-size: 2.5rem;
    color: #00ff88;
    margin: 0;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image .image-placeholder {
    height: 400px;
    font-size: 1.2rem;
}

.hero-image-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333333;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: #cccccc;
    font-size: 1.1rem;
}

.about-image .image-placeholder {
    height: 350px;
}

.about-image-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333333;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
}

/* Equipment Section */
.equipment {
    padding: 80px 0;
    background: #111111;
}

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

.equipment-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333333;
}

.equipment-item .image-placeholder {
    height: 200px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #333333;
}

.equipment-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #333333;
}

.equipment-item h3 {
    color: #00ff88;
    padding: 1.5rem 1.5rem 0.5rem;
}

.equipment-item ul {
    padding: 0 1.5rem 1.5rem;
    list-style: none;
}

.equipment-item li {
    color: #cccccc;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.equipment-item li::before {
    content: '•';
    color: #00ff88;
    position: absolute;
    left: 0;
}

/* Tournaments Section */
.tournaments {
    padding: 80px 0;
    background: #0a0a0a;
}

.tournaments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tournament-info h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.tournament-info p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.tournament-schedule {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333333;
}

.schedule-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item strong {
    color: #00ff88;
}

.tournament-image .image-placeholder {
    height: 350px;
}

.tournament-image-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333333;
}

/* Membership Section */
.membership {
    padding: 80px 0;
    background: #111111;
}

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

.membership-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    position: relative;
}

.membership-card.featured {
    border-color: #00ff88;
    background: linear-gradient(135deg, #1a1a1a, #0f2a1a);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.membership-card h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #cccccc;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    color: #00ff88;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.location-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333333;
}

.location-card .image-placeholder {
    height: 200px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #333333;
}

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #333333;
}

.location-card h3 {
    color: #00ff88;
    padding: 1.5rem 1.5rem 0.5rem;
}

.location-card p {
    color: #cccccc;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.location-card .location-contact {
    margin: 0 1.5rem 1.5rem;
    display: block;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: #111111;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.community-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.community-feature .feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.community-feature h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.community-feature p {
    color: #cccccc;
    margin: 0;
}

.community-image .image-placeholder {
    height: 350px;
}

.community-image-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333333;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.contact-item h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
    color: #cccccc;
    margin: 0;
}

.contact-item a:hover {
    color: #00ff88;
}

.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.contact-form h3 {
    color: #00ff88;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #333333;
    border-radius: 6px;
    background: #2a2a2a;
    color: #ffffff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ff88;
}

.contact-form button {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
}

/* Footer */
.footer {
    background: #111111;
    padding: 40px 0 20px;
    border-top: 1px solid #333333;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand h3 {
    color: #00ff88;
    margin: 0;
}

.footer-brand p {
    color: #cccccc;
    margin: 0;
}

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

.link-group h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    padding: 0.25rem 0;
    color: #cccccc;
    cursor: pointer;
}

.link-group li:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 2px solid #00ff88;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #00ff88;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #00ff88;
    color: #000000;
}

.cookie-btn.accept:hover {
    background: #00cc6a;
}

.cookie-btn.reject {
    background: transparent;
    color: #cccccc;
    border: 1px solid #666666;
}

.cookie-btn.reject:hover {
    background: #333333;
    border-color: #888888;
}

.cookie-btn.customize {
    background: transparent;
    color: #00ff88;
    border: 1px solid #00ff88;
}

.cookie-btn.customize:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Cookie Customization Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1a1a1a;
    border: 2px solid #00ff88;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 4px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background: #666666;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: #00ff88;
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
    transform: translateX(26px);
}

.cookie-category p {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333333;
}

.cookie-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal-btn.save {
    background: #00ff88;
    color: #000000;
}

.cookie-modal-btn.save:hover {
    background: #00cc6a;
}

.cookie-modal-btn.cancel {
    background: transparent;
    color: #cccccc;
    border: 1px solid #666666;
}

.cookie-modal-btn.cancel:hover {
    background: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-modal-content {
        margin: 10px;
        padding: 1.5rem;
    }

    .cookie-modal-actions {
        flex-direction: column;
    }

    .hero .container,
    .about-content,
    .tournaments-content,
    .community-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .brand-name {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .membership-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .equipment-showcase {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .community-feature {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .features,
    .equipment,
    .tournaments,
    .membership,
    .locations,
    .community,
    .contact {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .brand {
        flex-direction: column;
        text-align: center;
    }

    .brand-name {
        font-size: 1.8rem;
    }
}