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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

h2 {
    font-size: clamp(1.5rem, 5vw, 4rem);
    background: linear-gradient(45deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.3); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 15px;
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
    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(45deg, #00ffff, #ff00ff);
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.5);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-brand {
    flex-shrink: 0;
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}

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

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 255, 255, 0.1);
}

.bar {
    width: 30px;
    height: 3px;
    background: #00ffff;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2) saturate(1.5);
    opacity: 0.8;
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
    animation: fadeInUp 1.5s ease-out;
    padding: 3rem;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    color: #b0b0b0;
}

/* Sport Categories */
.sport-categories {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
}

.sport-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.sport-card {
    background: rgba(20, 20, 40, 0.9);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
}

/* Unique styles for each card */
.sport-card[data-sport="football"] {
    border-left: 5px solid #00ff00;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(20, 20, 40, 0.9) 100%);
}

.sport-card[data-sport="hockey"] {
    border-left: 5px solid #00ffff;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(20, 20, 40, 0.9) 100%);
}

.sport-card[data-sport="tennis"] {
    border-left: 5px solid #ff00ff;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(20, 20, 40, 0.9) 100%);
}

.sport-card[data-sport="handball"] {
    border-left: 5px solid #ffff00;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1) 0%, rgba(20, 20, 40, 0.9) 100%);
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.sport-card:hover::before {
    opacity: 1;
}

.sport-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}

.sport-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sport-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
}

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

.sport-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.sport-card:hover .sport-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    border-color: #00ffff;
}

.sport-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sport-title {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

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

.sport-list li {
    padding: 0.6rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 2.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.sport-list li:hover {
    color: #00ffff;
}

.sport-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.sport-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: 2px solid #00ffff;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.sport-link:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

/* Sport card actions */
.sport-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.sport-actions .btn {
    min-width: 160px;
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(20, 20, 40, 0.6);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3);
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.feature-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.feature-description {
    line-height: 1.8;
    font-size: 1.2rem;
    color: #d0d0d0;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: white;
    padding: 6rem 0 3rem;
    position: relative;
    border-top: 2px solid rgba(0, 255, 255, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ff00);
    animation: gradientShift 3s ease-in-out infinite;
}

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

.footer-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-subtitle {
    color: #00ffff;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-description {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #b0b0b0;
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #808080;
    font-size: 1rem;
}

/* Page Content Styles */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 4rem 0;
    background: rgba(20, 20, 40, 0.6);
    border-radius: 25px;
    margin: 3rem auto;
    max-width: 1200px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 255, 0.2);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-radius: 25px;
    z-index: -1;
}

.page-title {
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: #d0d0d0;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-card {
    background: rgba(20, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-radius: 25px;
    z-index: -1;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.contact-item p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-section {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(20, 20, 40, 0.6);
    border-radius: 15px;
    border-left: 4px solid #00ffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.1);
}

.faq-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    line-height: 1.4;
}

.faq-item p {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #d0d0d0;
    font-weight: 300;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Legal Content Styles */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 5rem;
    padding: 4rem;
    background: rgba(20, 20, 40, 0.8);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.03), rgba(255, 0, 255, 0.03));
    border-radius: 25px;
    z-index: -1;
}

.legal-section h2 {
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #00ffff;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.legal-section h3 {
    margin: 2.5rem 0 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.legal-section p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #d0d0d0;
    font-weight: 300;
}

.legal-section ul {
    margin: 2rem 0;
    padding-left: 2.5rem;
}

.legal-section li {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #d0d0d0;
    font-weight: 300;
}

.contact-info {
    background: rgba(0, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
}

/* Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 40, 0.9);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cookie-table th,
.cookie-table td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    font-size: 1.2rem;
}

.cookie-table th {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-table tr:hover {
    background: rgba(0, 255, 255, 0.05);
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        transition: all 0.4s ease;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        top: 80px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

    .sport-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }

    .sport-actions .btn {
        width: 100%;
        max-width: 350px;
    }

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

    .legal-section {
        padding: 15px 20px;
        margin-bottom: 3rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-item p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .faq-item {
        padding: 1.5rem;
        margin: 0 0.5rem 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
    
    .cookie-table {
        font-size: 1rem;
    }

    .footer {
        padding: 4rem 0;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 1.5rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

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

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

    .sport-card {
        margin: 0 10px;
    }

    .feature-card {
        padding: 3rem 2rem;
    }

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

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact-card {
        padding: 1rem;
        margin: 0;
    }

    .faq-item {
        padding: 1rem;
        margin: 0 0 1rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .faq-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-buttons {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .sport-categories,
    .why-us {
        padding: 2rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #00ffff;
        color: #000;
    }

    .btn-secondary {
        border-color: #00ffff;
        color: #00ffff;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #00ffff;
    }
}

/* Hide accessibility skip links that might be added by browser extensions */
a[href="#main-content"],
a[href*="main-content"],
a[style*="position: absolute"],
a[style*="top: -40px"],
a[style*="z-index: 10000"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Hide any element containing "Zum Hauptinhalt springen" text */
*:contains("Zum Hauptinhalt springen") {
    display: none !important;
}

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

    html {
        scroll-behavior: auto;
    }
}