/* Bootstrap Custom Styles */
:root {
    --bs-primary: #22c55e;
    --bs-success: #22c55e;
    --bs-warning: #ffd700;
    --bs-danger: #dc2626;
    --bs-dark: #1e293b;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar-brand {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.navbar-nav .nav-link {
    color: #d1d5db !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #22c55e !important;
}

/* Ana Sayfa CTA Button */
.cta-button-main {
    display: inline-block;
    min-width: 280px;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s infinite;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
    color: white;
    text-decoration: none;
}

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

.cta-button-main:hover::before {
    left: 100%;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 30px rgba(34, 197, 94, 0.6);
        transform: scale(1.02);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    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(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

.text-gradient {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards */
.stat-card,
.feature-card,
.promo-card,
.sport-card,
.game-card,
.live-game-card,
.terms-card {
    background: rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover,
.feature-card:hover,
.promo-card:hover,
.sport-card:hover,
.game-card:hover,
.live-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(34, 197, 94, 0.3);
}

/* Stat Cards */
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Feature Cards */
.feature-icon,
.sport-icon,
.game-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Promo Cards */
.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #22c55e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.bonus-amount {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #ffd700;
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Live Casino Specific */
.live-badge {
    animation: pulse 2s infinite;
}

.live-badge-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Special Sections */
.jackpot-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 12px;
    margin: 2rem 0;
}

.jackpot-stat {
    padding: 1rem;
}

.jackpot-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.jackpot-label {
    color: #d1d5db;
    font-size: 0.875rem;
}

.live-betting-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 12px;
}

.vip-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 12px;
}

.bonus-terms-section {
    background: rgba(30, 41, 59, 0.5);
}

/* SEO Content */
.seo-content,
.casino-article,
.sports-article,
.live-casino-article,
.promotions-article {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.seo-content h2,
.casino-article h2,
.sports-article h2,
.live-casino-article h2,
.promotions-article h2 {
    border-bottom: 2px solid #22c55e;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-success {
    background: #22c55e;
    border-color: #22c55e;
}

.btn-success:hover {
    background: #16a34a;
    border-color: #16a34a;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-warning {
    background: #ffd700;
    border-color: #ffd700;
    color: #000;
}

.btn-warning:hover {
    background: #ffed4e;
    border-color: #ffed4e;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-danger {
    background: #dc2626;
    border-color: #dc2626;
}

.btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5,
    .display-6 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .jackpot-amount {
        font-size: 1.75rem;
    }
    
    .feature-icon,
    .sport-icon,
    .game-icon {
        font-size: 2rem;
    }
    
    .promo-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-card,
    .feature-card,
    .promo-card,
    .sport-card,
    .game-card,
    .live-game-card {
        padding: 1rem;
    }
    
    .seo-content,
    .casino-article,
    .sports-article,
    .live-casino-article,
    .promotions-article {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.min-vh-100 {
    min-height: 100vh;
}

.min-vh-75 {
    min-height: 75vh;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Animation Classes */
.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-gradient {
    animation: gradientShift 4s ease infinite;
}