/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0F1624;
    color: white;
    min-height: 100vh;
    padding-top: 80px;
    background-image: radial-gradient(circle at 10% 20%, rgba(26, 42, 79, 0.1) 0%, rgba(15, 22, 36, 0.1) 90%);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a2a4f, #0f1624);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    list-style: none;
    width: 100%;
}

.nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #cbd5e1;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-item.active a {
    color: #ffffff;
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #4a9eff, #1a5fef);
    border-radius: 3px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 8px rgba(74, 158, 255, 0.3));
    transition: transform 0.3s ease;
    font-size: 24px;
}

.nav-item a:hover .nav-icon {
    transform: scale(1.1);
}

.nav-item span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Main Content */
.main-content {
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #a0d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.hero-section p {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Cards */
.card {
    background: linear-gradient(135deg, #1a2a4f, #0f1624);
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 158, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4a9eff, #1a2a4f);
    z-index: -1;
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 158, 255, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #a0d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-header p {
    font-size: 1.2rem;
    color: #e2e8f0;
}

.live-camera-img {
    width: 100%;
    border-radius: 16px;
    margin: 20px 0;
    background: linear-gradient(45deg, #2d3748, #4a5568);
    height: 300px;
    object-fit: contain;
    padding: 20px;
}

/* Video Player Styles */
#cameraStreamContainer {
    width: 100%;
    background: #000;
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#cameraStreamContainer video {
    width: 100%;
    max-height: 600px;
    border-radius: 12px;
    background: #000;
}

#cameraStreamContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
}

/* Error Message Styles */
.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 15px 0;
    text-align: center;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(74, 158, 255, 0.3);
    border-radius: 50%;
    border-top-color: #4a9eff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Feature Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: white;
}

.feature-card p {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a9eff, #1a5fef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.3);
    transition: transform 0.3s ease;
}

.card-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-icon i {
    font-size: 35px;
    color: white;
}

/* Icon Placeholder */
.icon-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a9eff, #1a5fef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    text-align: center;
}

/* View Button */
.view-button {
    background: linear-gradient(135deg, #4a9eff, #1a5fef);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.view-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.5);
    background: linear-gradient(135deg, #5aa8ff, #2a6fff);
}

.view-button:active {
    transform: translateY(0);
}

.view-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.view-button:hover::after {
    left: 120%;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Daily Page Specific Styles */
.daily-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.daily-card {
    padding: 30px;
    text-align: center;
}

.daily-card .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.daily-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.daily-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Transportation Page Specific Styles */
.transportation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.transportation-card {
    padding: 40px;
}

/* Mobese Page Specific Styles */
.toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 158, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: linear-gradient(135deg, #4a9eff, #1a5fef);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.toggle-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.toggle-btn:hover::after {
    left: 120%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-links {
        justify-content: space-between;
    }
    
    .nav-item a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .card-header h1 {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .daily-cards {
        grid-template-columns: 1fr;
    }
    
    .transportation-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .toggle-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camera-controls {
        flex-direction: column;
        width: 90%;
    }
    
    .control-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 15px;
    }
    
    .card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .card-header h1 {
        font-size: 1.8rem;
    }
    
    .feature-card h2 {
        font-size: 1.3rem;
    }
    
    .view-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a2a4f, #0f1624);
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #a0d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p,
.footer-section ul {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4a9eff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a9eff;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, #4a9eff, #1a5fef);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 158, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.9rem;
}

/* Info Box Styles */
.info-box {
    background: rgba(74, 158, 255, 0.1);
    border-left: 4px solid #4a9eff;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
}

.info-box h3 {
    color: #4a9eff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box p {
    color: #e2e8f0;
    margin: 5px 0;
}

/* Data List Styles */
.data-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.data-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(74, 158, 255, 0.1);
    transition: all 0.3s;
}

.data-item:hover {
    border-color: rgba(74, 158, 255, 0.3);
    transform: translateX(5px);
}

.data-item h4 {
    color: #4a9eff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.data-item p {
    color: #e2e8f0;
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(74, 158, 255, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 158, 255, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: #4a9eff;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2rem;
    margin: 10px 0;
}

.stat-card p {
    color: #e2e8f0;
    font-size: 0.9rem;
}

/* MOBESE Page Specific Styles */
.camera-select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.camera-select:hover:not(:disabled) {
    background: rgba(74, 158, 255, 0.15);
    border-color: rgba(74, 158, 255, 0.5);
}

.camera-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.camera-select option {
    background: #1a2a4f;
    color: white;
    padding: 10px;
}

.camera-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(45deg, #2d3748, #4a5568);
}

.live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.camera-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.control-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 1px solid rgba(74, 158, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(74, 158, 255, 0.3);
    border-color: rgba(74, 158, 255, 0.6);
    transform: translateY(-2px);
}

.control-btn i {
    margin-right: 5px;
}

#cameraViewCard {
    animation: fadeInUp 0.5s ease-out;
}

/* Advertisement Slots */
.ad-container {
    margin: 20px 0;
}

.ad-top {
    background: linear-gradient(135deg, rgba(26, 42, 79, 0.3), rgba(15, 22, 36, 0.3));
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.ad-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.ad-bottom {
    background: linear-gradient(135deg, rgba(26, 42, 79, 0.3), rgba(15, 22, 36, 0.3));
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ad-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ad-sidebar {
    background: linear-gradient(135deg, rgba(26, 42, 79, 0.3), rgba(15, 22, 36, 0.3));
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.ad-content {
    color: #e2e8f0;
    font-size: 0.9rem;
    min-height: 100px;
    width: 100%;
}

/* AdSense container boyutları */
.ad-top .ad-content,
.ad-bottom .ad-content {
    min-height: 90px;
    width: 100%;
}

.ad-sidebar .ad-content {
    min-height: 250px;
    min-width: 160px;
    width: 100%;
}

/* AdSense ins tag stilleri */
.adsbygoogle {
    display: block;
    min-height: 90px;
    width: 100%;
}

.ad-sidebar .adsbygoogle {
    min-height: 250px;
    min-width: 160px;
}

#ad-top-container,
#ad-bottom-container {
    min-height: 90px;
    width: 100%;
}

#ad-left-container,
#ad-right-container {
    min-height: 250px;
    min-width: 160px;
    width: 100%;
}

#interstitial-ad-container {
    min-width: 300px;
    min-height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#interstitial-ad-container .adsbygoogle {
    min-width: 300px;
    min-height: 250px;
}

.ad-label {
    display: inline-block;
    background: rgba(74, 158, 255, 0.2);
    color: #4a9eff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-with-ads {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1400px) {
    .content-with-ads {
        grid-template-columns: 250px 1fr 250px;
    }
    
    .ad-left {
        order: 1;
    }
    
    .main-column {
        order: 2;
    }
    
    .ad-right {
        order: 3;
    }
}

@media (max-width: 1399px) {
    .ad-sidebar {
        display: none;
    }
}

/* Admin Link */
.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.admin-link i {
    font-size: 14px;
}

/* Mobile App Download Banner */
.mobile-app-banner {
    background: linear-gradient(135deg, #1a2a4f, #0f1624);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 20px auto 30px;
    max-width: 1200px;
    position: relative;
    box-shadow: 0 10px 40px rgba(74, 158, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-text {
    flex: 1;
    min-width: 250px;
}

.banner-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #a0d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-text p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(74, 158, 255, 0.1);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 180px;
}

.download-btn:hover {
    background: linear-gradient(135deg, #4a9eff, #1a5fef);
    border-color: #4a9eff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.download-btn i {
    font-size: 2rem;
    color: #4a9eff;
    transition: color 0.3s ease;
}

.download-btn:hover i {
    color: white;
}

.download-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.download-sub {
    display: block;
    font-size: 0.75rem;
    color: #e2e8f0;
    margin-top: 2px;
}

.download-btn:hover .download-sub {
    color: rgba(255, 255, 255, 0.8);
}


/* SEO Keywords Section */
.seo-keywords-section {
    background: linear-gradient(135deg, #1a2a4f, #0f1624);
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    padding: 50px 20px;
    margin-top: 60px;
}

.seo-content {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #a0d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-keywords {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seo-keywords p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.seo-keywords p strong {
    color: #4a9eff;
    font-weight: 600;
}

/* Responsive Design for Mobile App Banner */
@media (max-width: 768px) {
    .mobile-app-banner {
        padding: 25px 20px;
        margin: 15px;
    }

    .banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .banner-text h2 {
        font-size: 1.5rem;
    }

    .banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .seo-keywords-section {
        padding: 40px 15px;
    }

    .seo-title {
        font-size: 1.5rem;
    }

    .seo-keywords p {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .banner-text h2 {
        font-size: 1.3rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .download-btn {
        padding: 10px 15px;
        min-width: auto;
    }

    .download-btn i {
        font-size: 1.5rem;
    }

    .seo-title {
        font-size: 1.3rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #1a2a4f, #0f1624);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    width: 100%;
    border: 1px solid rgba(74, 158, 255, 0.3);
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

.modal-header h2 {
    color: #e2e8f0;
    margin: 0;
}

.close-modal {
    color: #e2e8f0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #4a9eff;
}

.modal-body {
    padding: 30px;
}

.mode-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .mode-option-card {
        padding: 20px !important;
    }
    
    .mode-option-card h3 {
        font-size: 1.1rem;
    }
}

/* Interstitial Ad Modal (Tam Ekran Reklam) */
.interstitial-ad-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    animation: fadeIn 0.3s ease-out;
}

.interstitial-ad-modal.show {
    display: flex;
}

.interstitial-ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.interstitial-ad-content {
    position: relative;
    width: 100%;
    max-width: 90vw;
    max-height: 90vh;
    background: #1a2a4f;
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.interstitial-ad-container {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interstitial-ad-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(233, 69, 96, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
}

.interstitial-ad-close:hover {
    background: #e94560;
    transform: scale(1.1);
}

.interstitial-ad-close i {
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive - Interstitial Ad */
@media (max-width: 768px) {
    .interstitial-ad-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 15px;
    }

    .interstitial-ad-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}