/* İnat TV APK Site - Custom Styles */

:root {
    --primary-black: #000000;
    --primary-orange: #FF6600;
    --dark-orange: #E55A00;
    --light-orange: #FF8533;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    
    --gradient-orange: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a);
    
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(255, 102, 0, 0.3);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.3);
    
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-orange) !important;
    font-weight: 800;
}

.navbar-brand:hover {
    color: var(--light-orange) !important;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    align-items: center;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-section .row {
        min-height: auto;
        padding: 2rem 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title i {
    color: var(--primary-orange);
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Statistics Row */
.stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

.stat-item i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Download Button */
.download-btn {
    background: var(--gradient-orange);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
}

.download-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;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--dark-orange), #CC4400);
}

.download-btn.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border: none;
    color: var(--white);
    transition: var(--transition);
}

.download-btn.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.download-info {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Auto Download Notice */
.auto-download-notice {
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--primary-orange);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    color: var(--primary-orange);
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-radius: 25px;
    padding: 20px;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    padding: 20px;
    height: 100%;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-orange);
    font-weight: 600;
}

.preview-header i {
    font-size: 1.5rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--dark-gray);
}

.channel-logo {
    width: 40px;
    height: 30px;
    background: var(--gradient-orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Platform-specific logos - Orjinal tasarımlar */
.netflix-logo {
    background: #E50914;
    position: relative;
    overflow: hidden;
}

.netflix-logo::before {
    content: 'NETFLIX';
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-family: 'Arial Black', sans-serif;
}

.netflix-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 20%, #B81D24 50%, transparent 80%);
    opacity: 0.3;
}

.hbo-logo {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border: 1px solid #333;
}

.hbo-logo::before {
    content: 'HBO';
    font-size: 8px;
    font-weight: 900;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

.disney-logo {
    background: linear-gradient(135deg, #113CCF, #0E2A8A);
    position: relative;
}

.disney-logo::before {
    content: 'Disney+';
    font-size: 6px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
}

.disney-logo::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFFFFF 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0.8;
}

.bein-logo {
    background: linear-gradient(135deg, #00A859, #007A42);
    position: relative;
}

.bein-logo::before {
    content: 'beIN';
    font-size: 6px;
    font-weight: 900;
    color: #FFFFFF;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
}

.bein-logo::after {
    content: 'SPORTS';
    position: absolute;
    bottom: 2px;
    right: 1px;
    font-size: 3px;
    font-weight: 600;
    color: #FFFFFF;
    opacity: 0.8;
}

.ssport-logo {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    position: relative;
}

.ssport-logo::before {
    content: 'S';
    font-size: 16px;
    font-weight: 900;
    color: #FFFFFF;
    font-family: 'Arial Black', sans-serif;
}

.ssport-logo::after {
    content: 'SPORT';
    position: absolute;
    bottom: 2px;
    font-size: 3px;
    font-weight: 700;
    color: #FFFFFF;
    opacity: 0.9;
}

.exxen-logo {
    background: linear-gradient(135deg, #1E40AF, #1E3A8A);
    position: relative;
}

.exxen-logo::before {
    content: 'exxen';
    font-size: 6px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    text-transform: lowercase;
}

.exxen-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-black), #0a0a0a);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.accordion {
    --bs-accordion-bg: #1a1a1a;
    --bs-accordion-border-color: var(--dark-gray);
    --bs-accordion-btn-color: var(--white);
    --bs-accordion-btn-bg: #1a1a1a;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
    --bs-accordion-active-color: var(--primary-orange);
    --bs-accordion-active-bg: #1a1a1a;
}

.accordion-button:not(.collapsed) {
    background-color: #1a1a1a;
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.accordion-body {
    color: var(--light-gray);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a, var(--primary-black));
    padding: 50px 0 30px;
    border-top: 1px solid var(--dark-gray);
}

.footer h5 {
    color: var(--primary-orange);
    font-weight: 700;
}

.footer p {
    color: var(--medium-gray);
}

/* Download Notification */
.download-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.download-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--light-gray);
    }
    
    .stats-row {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .download-btn {
        min-width: auto;
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .auto-download-notice {
        margin-top: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
        margin: 2rem auto 0;
    }
    
    .channel-item {
        padding: 8px 0;
        gap: 12px;
    }
    
    .channel-item span {
        font-size: 0.9rem;
    }
    
    .channel-logo {
        width: 35px;
        height: 26px;
    }
    
    /* Platform logos mobil ayarları */
    .netflix-logo::before {
        font-size: 5px;
    }
    
    .hbo-logo::before {
        font-size: 7px;
    }
    
    .disney-logo::before {
        font-size: 5px;
    }
    
    .bein-logo::before {
        font-size: 5px;
    }
    
    .bein-logo::after {
        font-size: 2.5px;
    }
    
    .ssport-logo::before {
        font-size: 14px;
    }
    
    .ssport-logo::after {
        font-size: 2.5px;
    }
    
    .exxen-logo::before {
        font-size: 5px;
    }
    
    .feature-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .download-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .download-notification.show {
        transform: translateY(0);
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .stats-row {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .stat-item {
        min-width: 70px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .download-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        margin: 0 10px 1rem;
    }
    
    .auto-download-notice {
        margin: 1rem 10px 0;
        font-size: 0.85rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
        margin: 1.5rem auto 0;
    }
    
    .channel-logo {
        width: 30px;
        height: 22px;
    }
    
    .channel-item span {
        font-size: 0.8rem;
    }
    
    /* Platform logos küçük mobil ayarları */
    .netflix-logo::before {
        font-size: 4px;
    }
    
    .hbo-logo::before {
        font-size: 6px;
    }
    
    .disney-logo::before {
        font-size: 4px;
    }
    
    .bein-logo::before {
        font-size: 4px;
    }
    
    .bein-logo::after {
        font-size: 2px;
    }
    
    .ssport-logo::before {
        font-size: 12px;
    }
    
    .ssport-logo::after {
        font-size: 2px;
    }
    
    .exxen-logo::before {
        font-size: 4px;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .feature-card {
        margin: 0 15px 2rem;
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Loading States */
.loading {
    animation: pulse 1.5s infinite;
}

.shimmer {
    background: linear-gradient(90deg, #1a1a1a 25%, #333 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Utility Classes */
.text-orange {
    color: var(--primary-orange) !important;
}

.bg-orange {
    background: var(--gradient-orange) !important;
}

.border-orange {
    border-color: var(--primary-orange) !important;
}

.btn-orange {
    background: var(--gradient-orange);
    border: none;
    color: var(--white);
    transition: var(--transition);
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--dark-orange), #CC4400);
    color: var(--white);
    transform: translateY(-2px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
