*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

:root {
    --primary: #ff5e3a;
    --primary-light: #ff7f62;
    --primary-dark: #e5351f;
    --secondary: #ff6b47;
    --secondary-light: #ff8a73;
    --secondary-dark: #e5422a;
    --accent: #ff9475;
    --accent-light: #ffb49f;
    --accent-dark: #e56b47;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--warning) 100%);
    --gradient-bg: linear-gradient(135deg, #ff5e3a 0%, #ff6b47 25%, #ff7f62 50%, #ff9475 100%);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: ui-monospace, 'JetBrains Mono', Consolas, monospace;
}

body.dark {
    --primary: #ff7f62;
    --secondary: #ff6b47;
    --accent: #ff9475;
    --gradient-bg: linear-gradient(135deg, #2d1b16 0%, #ff5e3a 50%, #ff6b47 100%);
    
    --white: #0f172a;
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
    --gray-300: #64748b;
    --gray-400: #94a3b8;
    --gray-500: #cbd5e1;
    --gray-600: #e2e8f0;
    --gray-700: #f1f5f9;
    --gray-800: #f8fafc;
    --gray-900: #ffffff;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    scroll-padding-top: 80px; 
}

body {
    font-family: var(--font-secondary);
    background: var(--gradient-bg);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

body.dark ::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

body.dark ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 0;
}

body.dark ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
    backdrop-filter: blur(20px);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='15' cy='15' r='1'/%3E%3Ccircle cx='45' cy='45' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.4;
}

.modern-header {
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.announcement-bar {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.announcement-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 250px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.3s ease;
}

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

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-item a:hover {
    background: var(--gradient-primary);
    color: white;
}

.nav-item a.active {
    color: var(--primary);
    background: transparent;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.theme-toggle {
    background: var(--gray-100);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    background: var(--gray-100);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.hero-section {
    padding: 60px 30px;
    width: 100%;
    max-width: 100%;
    scroll-margin-top: 80px;
}

.hero-content {
    opacity: 1;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    padding: 16px 34px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.video-section {
    opacity: 1;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}

.video-container {
    flex: 2;
    background: transparent;
    order: 2;
    margin-right: -1px;
}

.video-player {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray-900);
    position: relative;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg), 0 0 0 3px var(--primary);
    display: block;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-2xl);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gray-900);
}

.control-panel {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-2xl);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: fit-content;
    order: 1;
}

.sport-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.sport-btn {
    background: var(--gray-100);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.sport-btn:hover,
.sport-btn.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.sport-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.changeSportButton {
    background: var(--gray-100);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.changeSportButton:hover,
.changeSportButton.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.changeSportButton svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.changeSportButton .type {
    font-size: 14px;
    font-weight: 500;
}



.search-container {
    margin-bottom: 25px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.macListeWrapper {
    flex: 1;
    position: relative;
    height: 380px;
    overflow: hidden;
    max-height: 400px;
    margin-top: 10px;
}

.macListeWrapper .macListe {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.macListeWrapper .macListe::-webkit-scrollbar,
.macListe::-webkit-scrollbar {
    display: none;
}

.macListeWrapper .macListe .mac {
    width: 100%;
    min-height: 70px;
    height: fit-content;
    margin-bottom: 12px;
    background: white;
    border-radius: 12px;
    padding: 16px 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
}

.macListeWrapper .macListe .mac:last-child {
    margin-bottom: 0;
}

.macListeWrapper .macListe .mac:hover {
    background: var(--gray-50);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.macListe .mac .takimlar {
    color: var(--gray-800);
    font-weight: 600;
    text-align: left;
    padding: 0;
    flex: 1;
    width: 100%;
    margin-bottom: 6px;
    font-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.macListe .mac .canli-badge {
    position: static;
    margin-left: auto;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--success);
    padding: 4px 10px;
    border-radius: var(--radius);
    border: none;
}

.macListe .mac .mac-alt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 4px;
    gap: 10px;
}

.macListe .mac .saat {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
}

.macListe .mac .divider {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 400;
}

.macListe .mac .lig {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
}

.macListe .mac.aktif {
    background: var(--gradient-primary);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 94, 58, 0.3);
    color: white;
}

.macListe .mac.aktif .takimlar {
    color: white;
}

.macListe .mac.aktif .lig, 
.macListe .mac.aktif .saat {
    color: white;
}

.macListe .mac.aktif .canli-badge {
    background: var(--success);
    color: white;
    border: none;
}

.macListe .mac.aktif:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    border-color: transparent;
}

.features-section {
    padding: 80px 30px;
    backdrop-filter: blur(10px);
    scroll-margin-top: 80px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-2xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    left: 0;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 30px;
    scroll-margin-top: 80px;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-2xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.08);
}

.pricing-header {
    margin-bottom: 30px;
}

.package-name {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-right: 5px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-primary);
}

.package-description {
    color: var(--gray-600);
    font-size: 16px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    color: var(--gray-700);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.package-features li:hover {
    color: var(--primary);
    padding-left: 10px;
}

.package-btn {
    width: 100%;
    background: var(--gray-200);
    color: var(--gray-700);
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn.primary,
.package-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.content-section {
    padding: 80px 30px;
    scroll-margin-top: 80px;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.content-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-card h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: var(--primary);
}

.content-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.feature-list.no-bullets li {
    padding-left: 0;
}

.feature-list.no-bullets li::before {
    display: none;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    margin: 15px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-800);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: var(--gradient-primary);
    color: white;
}

.faq-answer {
    padding: 20px;
    color: var(--gray-700);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-2xl);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.sidebar-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.sidebar-card p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-weight: 500;
}

.sidebar-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.mobile-fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
}

.mobile-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-fab:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.mobile-fab.active {
    transform: rotate(45deg);
}

.mobile-fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.fab-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: var(--radius-xl);
    color: var(--gray-700);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    white-space: nowrap;
}

.fab-menu-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.modern-footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--gray-700);
    padding: 60px 0 30px 0;
    margin-top: 50px;
    border-top: 1px solid var(--border);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 500px;
    height: 70px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-text h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.footer-brand-text p {
    opacity: 0.8;
    font-size: 14px;
    color: var(--gray-600);
}

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

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gray-800);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.contact-details p {
    margin-bottom: 12px;
    opacity: 0.9;
    color: var(--gray-600);
}

.footer-social {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 10px;
    color: var(--gray-600);
}

body.dark {
    color: var(--gray-800);
    background: var(--gradient-bg);
}

body.dark .main-container {
    background: transparent;
    border: 1px solid rgba(30, 58, 138, 0.4);
}

body.dark .modern-header {
    background: transparent;
    border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

body.dark .announcement-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

body.dark .nav-item a {
    color: var(--gray-700);
}

body.dark .nav-item a:hover {
    color: white;
    background: var(--gradient-primary);
}

body.dark .nav-item a.active {
    color: var(--primary-light);
    background: transparent;
}

body.dark .theme-toggle {
    background: var(--gray-200);
    color: var(--gray-700);
}

body.dark .theme-toggle:hover {
    background: var(--gradient-primary);
    color: white;
}

body.dark .hero-title {
    background: linear-gradient(135deg, #0c1529 0%, #1e3a8a 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark .hero-subtitle {
    color: var(--gray-600);
}

body.dark .btn-secondary {
    color: var(--gray-700);
    border-color: var(--gray-500);
}

body.dark .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

body.dark .control-panel {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark .video-player {
    box-shadow: var(--shadow-lg), 0 0 0 3px var(--primary-light);
}

body.dark .sport-btn {
    background: var(--gray-200);
    color: var(--gray-700);
}

body.dark .sport-btn:hover,
body.dark .sport-btn.active {
    background: var(--gradient-primary);
    color: white;
}

body.dark .search-input {
    background: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--gray-800);
}

body.dark .search-input:focus {
    border-color: var(--primary);
    background: var(--gray-50);
}

body.dark .search-input::placeholder {
    color: var(--gray-500);
}

body.dark .search-icon {
    color: var(--gray-500);
}

body.dark .macListeWrapper .macListe .mac {
    background-color: var(--gray-100);
    color: var(--gray-800);
    border-color: var(--gray-300);
}

body.dark .macListeWrapper .macListe .mac.aktif {
    background: var(--gradient-primary);
    color: white;
}

body.dark .macListeWrapper .macListe .mac .takimlar {
    color: var(--gray-800);
}

body.dark .macListeWrapper .macListe .mac:hover {
    background-color: var(--gray-200);
}

body.dark .macListeWrapper .macListe .mac.aktif:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

body.dark .macListe .mac .canli-badge {
    color: white;
    background: var(--success);
    border: none;
}

body.dark .macListe .mac .saat {
    color: var(--primary-light);
}

body.dark .macListe .mac .lig,
body.dark .macListe .mac .divider {
    color: var(--gray-400);
}

body.dark .feature-card,
body.dark .pricing-card,
body.dark .content-card,
body.dark .sidebar-card {
    background: rgba(15, 23, 42, 0.9);
    color: var(--gray-800);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark .feature-card:hover,
body.dark .pricing-card:hover,
body.dark .content-card:hover,
body.dark .sidebar-card:hover {
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.95);
}

body.dark .feature-title,
body.dark .package-name,
body.dark .sidebar-title {
    color: var(--gray-800);
}

body.dark .feature-description,
body.dark .package-description,
body.dark .sidebar-card p {
    color: var(--gray-700);
}

body.dark .package-features li {
    color: var(--gray-700);
    border-bottom-color: rgba(100, 116, 139, 0.2);
}

body.dark .package-features li:hover {
    color: var(--primary);
}

body.dark .package-btn {
    background: var(--gray-300);
    color: var(--gray-700);
}

body.dark .package-btn:hover,
body.dark .package-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

body.dark .content-card h2 {
    color: var(--primary);
}

body.dark .content-card p {
    color: var(--gray-700);
}

body.dark .feature-list li {
    color: var(--gray-700);
}

body.dark .faq-item {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(100, 116, 139, 0.2);
}

body.dark .faq-item:hover {
    border-color: var(--primary);
}

body.dark .faq-item summary {
    color: var(--gray-800);
    background: rgba(15, 23, 42, 0.5);
}

body.dark .faq-item summary:hover {
    background: var(--gradient-primary);
    color: white;
}

body.dark .faq-answer {
    color: var(--gray-700);
    border-top-color: rgba(100, 116, 139, 0.2);
}

body.dark .sidebar-card a {
    color: var(--primary);
}

body.dark .sidebar-card a:hover {
    color: var(--primary-light);
}

body.dark .mobile-fab-menu {
    background: rgba(15, 23, 42, 0.95);
}

body.dark .fab-menu-item {
    background: rgba(15, 23, 42, 0.95);
    color: var(--gray-700);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark .fab-menu-item:hover {
    background: var(--gradient-primary);
    color: white;
}

body.dark .modern-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

body.dark .footer-logo {
    background: transparent;
}

body.dark .footer-brand-text p {
    opacity: 0.8;
}

body.dark .footer-column a {
    color: rgba(248, 250, 252, 0.8);
}

body.dark .footer-column a:hover {
    color: white;
}

body.dark .contact-details p {
    opacity: 0.9;
}

body.dark .social-link {
    background: rgba(248, 250, 252, 0.2);
}

body.dark .social-link:hover {
    background: rgba(248, 250, 252, 0.3);
}

body.dark .footer-bottom p {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .main-container {
        width: 100%;
        max-width: 100%;
        padding: 0 25px;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }
    
    .video-section {
        flex-direction: column;
        gap: 25px;
    }
    
    .video-container {
        flex: none;
        width: 100%;
    }
    
    .control-panel {
        flex: none;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .content-grid,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .mobile-fab-container {
        display: block;
    }
    
    body.dark .modern-header {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(100, 116, 139, 0.2);
    }
    
    body.dark .nav-menu {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(100, 116, 139, 0.2);
    }
    
    body.dark .nav-menu a {
        color: var(--gray-600);
    }
    
    body.dark .nav-menu a:hover {
        background: var(--gray-100);
        color: var(--primary-light);
    }
    
    body.dark .mobile-menu-toggle {
        background: var(--gray-200);
    }
    
    body.dark .mobile-menu-toggle span {
        background: var(--gray-700);
    }
}

@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .main-container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-sizing: border-box;
    }
    
    .modern-header {
        height: auto;
        width: 100%;
        box-sizing: border-box;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0;
    }
    
    .nav-container {
        padding: 12px 20px;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
    }
    
    .logo-container {
        flex-shrink: 0;
    }
    
    .logo img {
        height: 35px;
        width: auto;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .cta-button {
        display: none;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        height: auto;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(20px);
        box-sizing: border-box;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu a {
        width: auto;
        text-align: center;
        padding: 15px 30px;
        border-top: none;
        box-sizing: border-box;
        display: inline-block;
        border-radius: var(--radius);
        margin: 2px 20px;
        transition: all 0.3s ease;
        font-weight: 500;
        color: var(--gray-700);
        text-decoration: none;
    }
    
    .nav-menu a:hover {
        background: var(--gray-100);
        color: var(--primary);
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        background: var(--gray-100);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: var(--radius-lg);
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        transition: all 0.3s ease;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        background: var(--gray-700);
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    body.dark .mobile-menu-toggle {
        background: var(--gray-200);
    }
    
    body.dark .mobile-menu-toggle span {
        background: var(--gray-700);
    }
    
    .hero-section {
        padding: 20px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .video-section {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .video-container {
        flex: none;
        width: 100%;
        box-sizing: border-box;
        order: 1;
    }
    
    .video-player {
        width: 100%;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
        min-height: 200px;
    }
    
    .video-player iframe {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--gray-900);
    }
    
    .control-panel {
        flex: none;
        padding: 15px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        order: 2;
    }
    
    .sport-nav {
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .sport-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .sport-nav::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0;
    }
    
    .sport-nav::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 0;
    }
    
    .sport-btn {
        padding: 8px 12px;
        font-size: 11px;
        min-width: auto;
        white-space: nowrap;
        flex-shrink: 0;
        box-sizing: border-box;
    }
    
    .sport-btn.active,
    .sport-btn:hover {
        background: var(--gray-200);
        color: var(--gray-800);
        transform: none;
        box-shadow: none;
    }
    
    body.dark .sport-btn.active,
    body.dark .sport-btn:hover {
        background: var(--gray-200);
        color: var(--gray-700);
        transform: none;
        box-shadow: none;
    }
    
    .macListeWrapper {
        height: 350px !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .macListe .mac {
        width: 100%;
        box-sizing: border-box;
    }
    
    .features-section,
    .pricing-section,
    .content-section {
        padding: 40px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 30px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .modern-footer {
        padding: 40px 0 20px 0;
        margin-top: 30px;
    }
    
    .footer-logo {
        width: 160px;
        height: 160px;
        margin: 0 auto 15px auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .mobile-fab-container {
        display: block;
    }    
}