     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #030712;
            color: #e4e4e4;
            line-height: 1.6;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: #111827;
            border-bottom: 3px solid #1f2937;
            padding: 20px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 20px #1f2937;
            letter-spacing: 2px;
        }

        .logo span {
            color: #fff;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #e4e4e4;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 16px;
        }

        nav a:hover {
            color: #c41e3a;
        }

        .cta-section {
            text-align: center;
            padding: 60px 20px;
            background: #111827;
            margin-top: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #fff;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #b0b0b0;
        }

        .live-watch-btn {
            display: inline-block;
            padding: 18px 50px;
            background: #374151;
            color: #ffffff;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .live-watch-btn:hover {
            transform: translateY(-3px);
            background: #6b7280;
        }

        .live-watch-btn::before {
            content: "🔴 ";
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        main {
            padding: 40px 0;
        }

        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 40px 20px;
            background: #111827;
            border-radius: 15px;
        }

        .article-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
            color: #c41e3a;
            text-shadow: 0 0 15px rgba(196, 30, 58, 0.3);
        }

        .article-meta {
            color: #b0b0b0;
            font-size: 14px;
            margin-top: 15px;
        }

        .article-content {
            background: rgba(40, 20, 20, 0.6);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .article-content h2 {
            color: #c41e3a;
            font-size: 28px;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(196, 30, 58, 0.3);
        }

        .article-content h3 {
            color: #fff;
            font-size: 22px;
            margin-top: 25px;
            margin-bottom: 10px;
        }

        .article-content p {
            margin-bottom: 20px;
            font-size: 16px;
            color: #d0d0d0;
            text-align: justify;
        }

        .article-content ul {
            margin: 20px 0;
            padding-left: 30px;
        }

        .article-content li {
            margin-bottom: 10px;
            color: #d0d0d0;
        }

        .highlight-box {
            background: rgba(196, 30, 58, 0.1);
            border-left: 4px solid #c41e3a;
            padding: 20px;
            margin: 30px 0;
            border-radius: 8px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: rgba(196, 30, 58, 0.1);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(196, 30, 58, 0.3);
        }

        .stat-card h4 {
            color: #c41e3a;
            font-size: 32px;
            margin-bottom: 10px;
        }

        .stat-card p {
            color: #b0b0b0;
            font-size: 14px;
        }

        footer {
            background: #111827;
            padding: 30px 0;
            margin-top: 60px;
            text-align: center;
        }

        footer p {
            color: #b0b0b0;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
            }

            .article-header h1 {
                font-size: 32px;
            }

            .article-content {
                padding: 25px;
            }

            .cta-section h2 {
                font-size: 28px;
            }
        }
  #adsense-splash {
    width: 450px;
    height: auto;     /* 480px yerine auto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 1001;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
}

#adsense-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#adsense-splash p {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    font-weight: bold;
}

#watch-button {
    display: none;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: green;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#watch-button:hover {
    background-color: darkgreen;
}

/* Mobil uyumluluk */
@media screen and (max-width: 768px) {
    .hero-section{padding:60px 20px}
    .logo{font-size:2.5rem}
    
    #adsense-splash {
        width: 90%;
        height: auto;
        padding: 10px;
    }
    #adsense-splash p {
        font-size: 14px;
    }
    #watch-button {
        padding: 8px 16px;
        font-size: 16px;
    }
}