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

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

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

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

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

.nav-logo h2 {
    color: #e0e0e0;
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    transition: transform 0.3s ease;
    filter: brightness(1.2);
}

.logo-img:hover {
    transform: scale(1.02);
    filter: brightness(1.4);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

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

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -8px;
    left: 0;
    background-color: #e0e0e0;
    transition: width 0.3s ease;
}

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

.nav-button .nav-link {
    background: linear-gradient(135deg, #2c5530, #1a3d1e);
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #3d6b42;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    position: relative;
}

.nav-button .nav-link::after {
    display: none;
}

.nav-button .nav-link:hover {
    background: linear-gradient(135deg, #3d6b42, #2c5530);
    border-color: #4a7c4f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.hero-text-overlay {
    max-width: 600px;
}

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

.hero-logo-img {
    height: 250px;
    width: auto;
    max-width: 800px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-features-overlay {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 50px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-summary {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.feature-item {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.feature-separator {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.7;
}


.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.btn-primary {
    background-color: #ffffff;
    color: #0a0a0a;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0a0a0a;
    transform: translateY(-1px);
}


/* Section Styles */
section {
    padding: 100px 0;
}

h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

/* About Section */
.about {
    background-color: #111111;
}

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

.about-text p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: grid;
    gap: 2rem;
}

.feature h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.feature p {
    color: #b0b0b0;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.stat p {
    color: #b0b0b0;
    font-weight: 400;
}

/* Technology Section */
.technology {
    background-color: #0a0a0a;
}

.tech-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.tech-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.apogee-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apogee-image:hover {
    transform: scale(1.05);
}


.tech-intro {
    padding-left: 2rem;
}

.tech-intro h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.tech-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.7;
}

.tech-features-list {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tech-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #222222;
    transition: all 0.3s ease;
}

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

.tech-feature-item:hover {
    padding-left: 1rem;
}

.feature-number {
    font-size: 2rem;
    font-weight: 300;
    color: #666666;
    min-width: 60px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.feature-content h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.feature-content p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
}


/* Services Section */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.services-description {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #333333;
}

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

.service-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5a27 0%, #3a6b33 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-content {
    flex: 1;
}

.service-content h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.service-content p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing {
    background-color: #111111;
}

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

.pricing-card {
    background: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
}

.pricing-card.featured {
    border: 2px solid #ffffff;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #0a0a0a;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
}

.pricing-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.price span {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    border-bottom: 1px solid #333333;
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-item p {
    color: #b0b0b0;
    margin-bottom: 0.3rem;
}

.contact-map {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

.contact-map h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.map-note {
    color: #e0e0e0;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}


/* Footer */
.footer {
    background-color: #000000;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.app-store-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.app-badge {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
}

.app-badge:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-button .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0a0a0a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

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

    .nav-button .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
        display: inline-block;
        width: auto;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-features-overlay {
        bottom: 30px;
    }

    .features-container {
        padding: 1.2rem 1.5rem;
    }

    .features-summary {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem 1rem;
    }

    .feature-item {
        font-size: 1rem;
        text-align: center;
    }

    .feature-separator {
        display: none;
    }

    .hero-text-overlay {
        text-align: center;
    }

    .hero-logo-img {
        height: 180px;
        max-width: 600px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

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

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

    .pricing-card.featured {
        transform: none;
    }

    .container-full {
        padding: 0 15px;
    }

    .tournament-header-row {
        padding: 1.2rem 1.5rem;
    }

    .tournament-header-row h3 {
        font-size: 1.6rem;
    }

    .tournament-date-badge {
        font-size: 0.95rem;
    }

    .tournament-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .tournament-table td {
        padding: 1rem 1.5rem;
        display: block;
    }

    .tournament-table tbody tr {
        display: block;
        padding: 1rem 0;
    }

    .table-icon {
        display: inline-block;
        margin-right: 1rem;
        vertical-align: middle;
    }

    .table-label {
        display: inline-block;
        width: auto;
        margin-right: 1rem;
        font-weight: 600;
    }

    .table-value {
        display: block;
        margin-top: 0.5rem;
        padding-left: 3rem;
    }

    .tournament-requirements-section {
        padding: 1.2rem 1.5rem;
    }

    .tournament-payment-section {
        padding: 1.2rem 1.5rem;
    }

    .venmo-qr-container {
        padding: 1.5rem;
    }

    .venmo-qr-placeholder {
        min-height: 180px;
        padding: 1.2rem;
    }

    .venmo-handle {
        font-size: 1.4rem;
    }

    .payment-instructions {
        font-size: 1rem;
    }
    
    .payment-instructions a {
        color: #ffffff;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .payment-instructions a:hover {
        color: #2d5a27;
    }

    .tournament-footer {
        padding: 1.5rem;
    }

    .golf-simulator-placeholder {
        width: 300px;
        height: 225px;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .tech-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-intro {
        padding-left: 0;
        text-align: center;
    }

    .tech-feature-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .feature-number {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        height: 140px;
        max-width: 450px;
    }

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


    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0.7rem 1rem;
    }

    .hero-features-overlay {
        bottom: 25px;
        padding: 50px 20px;
    }

    .features-container {
        padding: 1rem 1.2rem;
    }

    .features-summary {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .features-list {
        gap: 0.6rem 0.8rem;
    }

    .feature-item {
        font-size: 0.9rem;
        text-align: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .service-content h4 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    .container-full {
        padding: 0 20px;
    }

    .tournament-header-row {
        padding: 1.5rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .tournament-header-row h3 {
        font-size: 2rem;
    }

    .tournament-table td {
        padding: 1.2rem 2rem;
    }

    .table-icon {
        font-size: 1.5rem;
        width: 60px;
    }

    .table-label {
        width: 150px;
        font-size: 0.95rem;
    }

    .table-value {
        font-size: 1rem;
    }

    .tournament-requirements-section {
        padding: 1.5rem 2rem;
    }

    .tournament-payment-section {
        padding: 1.5rem 2rem;
    }

    .venmo-qr-placeholder {
        min-height: 200px;
        padding: 1.5rem;
    }

    .venmo-handle {
        font-size: 1.5rem;
    }

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

    .pricing-card,
    .contact-map {
        padding: 1.5rem;
    }

    .app-store-badges {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .app-badge {
        height: 45px;
    }

    .modal-app-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .modal-app-badge {
        height: 40px;
    }

    h2 {
        font-size: 2rem;
    }

    .tech-intro h3 {
        font-size: 1.5rem;
    }

    .tech-description {
        font-size: 1rem;
    }

    .tech-intro h3 {
        font-size: 2rem;
    }

    .apogee-image {
        height: 300px;
    }

    .tech-feature-item {
        padding: 1.5rem 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    color: #333333;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

.modal-close {
    color: #666666;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #333333;
}

.modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
}

.membership-iframe,
.booking-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 12px 12px;
}

.modal-app-download {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.modal-app-blurb {
    color: #333333;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 500;
}

.modal-app-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-app-badge {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 6px;
}

.modal-app-badge:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for form submission */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2d5a27;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tournaments Section */
.tournaments {
    background-color: #111111;
    padding: 100px 0;
}

.container-full {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.tournament-table-container {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.tournament-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: #0f0f0f;
    border-bottom: 2px solid #2a2a2a;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tournament-header-row h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin: 0;
}

.tournament-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.tournament-date-badge {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.tournament-badge {
    background: linear-gradient(135deg, #2d5a27 0%, #3a6b33 100%);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tournament-table {
    width: 100%;
    border-collapse: collapse;
}

.tournament-table tbody tr {
    border-bottom: 1px solid #2a2a2a;
    transition: background-color 0.2s ease;
}

.tournament-table tbody tr:hover {
    background-color: #0f0f0f;
}

.tournament-table tbody tr:last-child {
    border-bottom: none;
}

.tournament-table td {
    padding: 1.5rem 3rem;
    vertical-align: middle;
}

.table-icon {
    font-size: 2rem;
    text-align: center;
    width: 80px;
    padding-right: 0;
}

.table-label {
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 500;
    width: 200px;
    letter-spacing: 0.3px;
}

.table-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
}

.table-note {
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
    display: block;
    margin-top: 0.3rem;
}

.tournament-requirements-section {
    padding: 2rem 3rem;
    background: #0f0f0f;
    border-top: 2px solid #2a2a2a;
}

.tournament-requirements-section h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.requirements-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 3px solid #2d5a27;
}

.req-icon {
    color: #2d5a27;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.req-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.req-text strong {
    color: #ffffff;
    font-weight: 600;
}

.tournament-payment-section {
    padding: 2.5rem 3rem;
    background: #0f0f0f;
    border-top: 2px solid #2a2a2a;
}

.tournament-payment-section h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.payment-content {
    display: flex;
    justify-content: center;
}

.venmo-payment {
    text-align: center;
    max-width: 400px;
}

.payment-instructions {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.venmo-qr-container {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.venmo-handle-below {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.venmo-qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem;
    background: #0f0f0f;
    border-radius: 8px;
    border: 2px dashed #2a2a2a;
    min-height: 250px;
    justify-content: center;
    width: 100%;
}

.qr-note {
    color: #888888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.venmo-handle {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.qr-instruction {
    color: #b0b0b0;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.qr-instruction strong {
    color: #ffffff;
    font-weight: 600;
}

.venmo-qr-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tournament-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem 3rem;
    background: #1a1a1a;
    border-top: 2px solid #2a2a2a;
}

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

.tournament-cta .btn {
    margin-bottom: 1rem;
}

.cta-note {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.tournament-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tournament-contact h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.tournament-contact p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.tournament-contact a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tournament-contact a:hover {
    color: #2d5a27;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: #0f0f0f;
    overflow: hidden;
}

.reviews h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.reviews-track {
    display: flex;
    animation: scroll-reviews 30s linear infinite;
    gap: 2rem;
    padding: 1rem 0;
}

.review-card {
    flex: 0 0 350px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.review-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.review-date {
    color: #888888;
    font-size: 0.8rem;
    font-style: italic;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.reviews-carousel:hover .reviews-track {
    animation-play-state: paused;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 95vh;
        margin: 2.5% auto;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    .modal-close {
        font-size: 1.8rem;
    }

    .reviews h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .review-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        height: 98vh;
        margin: 1% auto;
    }

    .modal-header {
        padding: 0.8rem 1rem;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-close {
        font-size: 1.6rem;
    }

    .reviews h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .review-card {
        flex: 0 0 250px;
        padding: 1.2rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    .review-stars {
        font-size: 1.2rem;
    }
}
