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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background-color: #f0f4f8;
    overflow-x: hidden;
    font-size: 15px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}


/* Header Styles - Modern Light Design */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(100, 200, 255, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64c8ff 0%, #4a9eff 50%, #2e7dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

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

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #64c8ff, #2e7dff);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: #64c8ff;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

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

.bar {
    width: 28px;
    height: 3px;
    background: #2e7dff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section - Full Screen with Video */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-content {
    width: 100%;
    z-index: 1;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2e7dff 50%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(46, 125, 255, 0.2);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles - Modern Gradient */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2e7dff 0%, #4a9eff 50%, #64c8ff 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(46, 125, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(46, 125, 255, 0.6);
}

.btn-secondary {
    background: rgb(40 77 98 / 10%);
    color: #315e77;
    border: 2px solid rgba(100, 200, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(100, 200, 255, 0.2);
    border-color: #64c8ff;
    transform: translateY(-4px);
}

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

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    background: linear-gradient(135deg, #1a1a2e 0%, #2e7dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Sports Section - Card Grid with Modern Design */
.sport-main-section {
    padding: 8rem 0;
    background: rgb(240 247 255 / 26%);
    backdrop-filter: blur(10px);
    position: relative;
}

.sport-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.sport-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 125, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(100, 200, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e7dff, #64c8ff, #2e7dff);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.sport-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 125, 255, 0.25);
    border-color: rgba(100, 200, 255, 0.5);
}

.sport-card:hover::before {
    transform: scaleX(1);
}

.sport-icon {
    margin-bottom: 1.25rem;
    position: relative;
}

.sport-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.5s ease;
}

.sport-card:hover .sport-image {
    filter: brightness(1.1) contrast(1.2);
    transform: scale(1.05);
}

.sport-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.sport-events {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.sport-events li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid rgba(100, 200, 255, 0.2);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.sport-events li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #64c8ff;
    font-weight: bold;
}

.sport-events li:last-child {
    border-bottom: none;
}

.sport-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.btn-ticketmaster {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: white;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.btn-ticketmaster:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.6);
}

.btn-eventim {
    background: linear-gradient(135deg, #e53e3e 0%, #ff6b6b 100%);
    color: white;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

.btn-eventim:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.6);
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Why Us Section */
.sport-why-section {
    padding: 8rem 0;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
}

.sport-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.sport-why-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(100, 200, 255, 0.1);
    transition: all 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 200, 255, 0.3);
    box-shadow: 0 20px 50px rgba(46, 125, 255, 0.2);
}

.sport-why-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2e7dff 0%, #64c8ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(46, 125, 255, 0.4);
}

.sport-why-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.sport-why-text {
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

/* Footer */
.footer {
    background: rgb(28 28 28 / 95%);
    color: #1a1a2e;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(100, 200, 255, 0.3);
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #64c8ff;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64c8ff 0%, #4a9eff 50%, #2e7dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-text {
    color: #94a3b8;
    line-height: 1.8;
    font-weight: 300;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #64c8ff;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: #94a3b8;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 200, 255, 0.2);
    color: #94a3b8;
}

/* Page Header */
.page-header {
    padding: 10rem 0 5rem;
    background: rgba(240, 247, 255, 0.8);
    backdrop-filter: blur(10px);
    margin-top: 80px;
    text-align: center;
}

.page-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2e7dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: rgba(240, 247, 255, 0.8);
    backdrop-filter: blur(10px);
}

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

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(46, 125, 255, 0.15);
    border: 1px solid rgba(100, 200, 255, 0.3);
    backdrop-filter: blur(20px);
}

.contact-form-title {
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1.2rem;
    border: 2px solid rgba(100, 200, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a2e;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;

}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info {
    padding: 2rem 0;
}

.contact-info-title {
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.contact-info-text {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e7dff 0%, #64c8ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 125, 255, 0.3);
}

.contact-detail h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(46, 125, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 200, 255, 0.3);
}

.faq-item:hover {
    border-color: rgba(100, 200, 255, 0.3);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(240, 247, 255, 0.8);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64c8ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Content Section */
.content-section {
    padding: 6rem 0;
    background: rgba(240, 247, 255, 0.8);
    backdrop-filter: blur(10px);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 200, 255, 0.3);
    box-shadow: 0 10px 30px rgba(46, 125, 255, 0.1);
}

.content-text {
    line-height: 1.9;
    color: #2d3748;
}

.content-text h2 {
    font-size: 1.65rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    color: #1a1a2e;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(100, 200, 255, 0.4);
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #2e7dff;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-weight: 400;
}

.content-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-weight: 400;
}

.content-text a {
    color: #2e7dff;
    text-decoration: none;
    font-weight: 500;
}

.content-text a:hover {
    text-decoration: underline;
}

/* Benefits Section */
.sport-benefits-section {
    padding: 6rem 0;
    background: rgba(240, 247, 255, 0.8);
    backdrop-filter: blur(10px);
}

.sport-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.sport-benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(100, 200, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(46, 125, 255, 0.1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 200, 255, 0.3);
    box-shadow: 0 20px 50px rgba(46, 125, 255, 0.2);
}

.sport-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2e7dff 0%, #64c8ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(46, 125, 255, 0.3);
}

.sport-benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.sport-benefit-item p {
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

/* Info Section */
.sport-info-section {
    padding: 6rem 0;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
}

.sport-info-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.sport-info-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2e7dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sport-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.sport-info-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(46, 125, 255, 0.1);
    border: 1px solid rgba(100, 200, 255, 0.3);
    transition: all 0.4s ease;
}

.info-item:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 200, 255, 0.3);
    box-shadow: 0 20px 50px rgba(46, 125, 255, 0.2);
}

.sport-info-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.sport-info-item p {
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.9) 0%, rgba(224, 242, 254, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(100, 200, 255, 0.3);
    border-bottom: 1px solid rgba(100, 200, 255, 0.3);
}

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

.cta-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a5568;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #2e7dff 0%, #64c8ff 100%);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #2e7dff;
    border: 2px solid rgba(46, 125, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #2e7dff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

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

    .sport-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sport-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-ticketmaster,
    .btn-eventim {
        width: 100%;
        max-width: 250px;
        padding: 1rem 1.5rem;
    }

    .sport-why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

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

    .contact-form-container {
        padding: 2rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .content-text h2 {
        font-size: 1.5rem;
    }

    .sport-benefits-grid,
    .sport-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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

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

    .sport-card,
    .sport-why-card {
        padding: 2rem;
    }

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

    .btn-ticketmaster,
    .btn-eventim {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        max-width: 200px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {

}
