        /* --- GENEL DEĞİŞKENLER VE AYARLAR --- */
        :root {
            --primary-green: #014131;
            --accent-teal: #42726d;
            --dark-bg: #1a1e22;
            --text-dark: #111111;
            --text-gray: #555555;
            --bg-light: #fafcfc;
            --white: #ffffff;
            --border-color: #eaeaea;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, input, button, textarea, select {
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- 1. HEADER --- */
        .navbar {
            background: #ffffff;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .logo img { height: 60px; display: block; }

        .nav-center { display: flex; gap: 20px; align-items: center; margin-left: auto; margin-right: 40px; }
        .nav-item { position: relative; padding: 10px 0; cursor: pointer; }
        .nav-link {
            color: #000000; font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
            padding: 8px 12px; border-radius: 5px; transition: all 0.3s ease; display: block;
        }
        .nav-link:hover { color: var(--primary-green); background-color: rgba(1, 65, 49, 0.05); }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            width: 960px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0 24px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            border-top: 3px solid var(--accent-teal);
            border-radius: 16px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            padding: 20px 16px;
            z-index: 1001;
            text-align: left;
        }

        .dropdown-col {
            display: flex;
            flex-direction: column;
        }

        .dropdown-col-title {
            display: block;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-teal);
            padding: 6px 20px 10px;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-dark);
            text-transform: none;
            text-shadow: none;
            white-space: nowrap;
            transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
        }

        .dropdown-menu li a i {
            width: 16px;
            flex-shrink: 0;
            text-align: center;
            font-size: 0.8rem;
            color: var(--accent-teal);
            transition: color 0.25s ease;
        }

        .dropdown-col li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu li a:hover {
            background: #f0f8f7;
            color: var(--primary-green);
            padding-left: 25px;
        }

        .dropdown-menu li a:hover i {
            color: var(--primary-green);
        }

        .dropdown-placeholder a,
        .dropdown-placeholder a:hover {
            visibility: hidden;
            pointer-events: none;
            background: transparent;
            padding-left: 20px;
        }

        .dropdown-menu li a.active-page {
            color: var(--primary-green);
            font-weight: 700;
            background-color: rgba(1, 65, 49, 0.05);
        }

        .nav-right { display: flex; gap: 15px; align-items: center; }
        .btn-auth {
            padding: 10px 20px; border: 2px solid #000000; color: #000000; border-radius: 50px;
            font-weight: 600; font-size: 0.85rem; background: transparent; transition: 0.3s;
        }
        .btn-auth:hover { background-color: var(--primary-green); border-color: var(--primary-green); color: #ffffff; transform: translateY(-2px); }
        .hamburger-menu { display: none; font-size: 2rem; color: #000; cursor: pointer; }
        .btn-lang { padding: 8px 12px; border: 2px solid #000000; border-radius: 50px; background: transparent; cursor: pointer; transition: 0.3s; display: flex; align-items: center; }
        .btn-lang:hover { border-color: var(--primary-green); transform: translateY(-2px); }


        /* --- 2. BASIN ODASI (PRESS ROOM) TASARIMI --- */
        .press-page-header {
            padding: 80px 5% 50px;
            max-width: 1300px;
            margin: 0 auto;
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 60px;
        }

        .page-badge {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--primary-green);
            font-weight: 700; font-size: 0.9rem; letter-spacing: 2px;
            margin-bottom: 15px; text-transform: uppercase;
        }

        .press-page-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #111;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .press-page-subtitle {
            font-size: 1.15rem;
            color: var(--text-gray);
            line-height: 1.7;
            max-width: 800px;
        }

        /* --- HABER KARTLARI GRİD SİSTEMİ --- */
        .press-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto 120px;
            padding: 0 5%;
        }

        /* Kurumsal Haber Kartı */
        .news-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border-color: rgba(1, 65, 49, 0.2);
        }

        /* Video Thumbnail Alanı */
        .news-media {
            width: 100%;
            aspect-ratio: 16 / 9;
            position: relative;
            background-color: #000;
            border-bottom: 4px solid var(--primary-green);
            overflow: hidden;
        }

        .news-media video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
            transition: transform 0.5s ease;
        }

        /* Sabitleme İkonu (blog.html ile aynı tasarım) - TV/Video içerikler için */
        .pin-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-green);
            color: #ffffff;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            font-size: 0.9rem;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .news-card:hover .pin-icon {
            background-color: #ffffff;
            color: var(--primary-green);
        }

        .play-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 2;
        }

        .play-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.5rem;
            padding-left: 4px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-media video { transform: scale(1.03); }
        .news-card:hover .play-overlay { background: rgba(0,0,0,0.5); }
        .news-card:hover .play-icon { transform: scale(1.1); background: #ffffff; }

        /* Haber İçerik (Metin) Alanı */
        .news-content {
            padding: 30px 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .news-meta {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .news-source {
            color: var(--primary-green);
        }

        .news-category {
            color: #888;
        }

        /* İçerik Türü Etiketi: TV Kanalı / Haber Bülteni ayrımı (kanal isminin yanında) */
        .type-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #ffffff;
        }

        .tag-tv {
            background-color: var(--primary-green);
        }

        .tag-haber {
            background-color: #b5762d;
        }

        .news-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }

        .news-card:hover .news-title {
            color: var(--primary-green);
        }

        .news-excerpt {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .news-read-more {
            margin-top: auto;
            font-size: 0.9rem;
            font-weight: 700;
            color: #111;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .news-read-more i {
            font-size: 0.8rem;
            color: var(--primary-green);
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-read-more i {
            transform: translateX(5px);
        }

        /* --- VİDEO MODAL (POPUP) --- */
        .video-modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .video-modal-content {
            position: relative;
            width: 70%;
            max-width: 1100px;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .video-modal-overlay.active .video-modal-content {
            transform: scale(1);
            opacity: 1;
        }

        .video-modal-content video {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: contain;
            outline: none;
        }

        .close-video-btn {
            position: absolute;
            top: -45px;
            right: -20px;
            color: #ffffff;
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            line-height: 1;
            padding: 10px;
        }

        .close-video-btn:hover {
            color: var(--primary-green);
        }

        /* Mobil Menü Overlay Tasarımı */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--primary-green);
            z-index: 2000;
            transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
            display: flex;
            flex-direction: column;
            padding: 40px 10% 80px;
            overflow-y: auto;
        }

        .mobile-menu-overlay.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .close-mobile-menu {
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
        }

        .mobile-nav-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 15px;
        }

        .mobile-nav-link {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 20px;
            background: rgba(0,0,0,0.1);
            border-radius: 10px;
        }

        .mobile-dropdown.active {
            max-height: 500px;
            margin-top: 15px;
            padding: 15px 20px;
        }

        .mobile-dropdown li {
            margin-bottom: 12px;
        }

        .mobile-dropdown li a {
            color: #4db6ac;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .mobile-auth-btns {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-auth-btns .btn-auth {
            text-align: center;
            padding: 15px;
            font-size: 1rem;
        }

        @media (max-width: 992px) {
            .hamburger-menu {
                display: block !important;
                position: relative;
                z-index: 1001;
            }
        }

        /* --- 3. FOOTER --- */
        footer { background-color: #1a1e22; color: #b0b0b0; padding: 80px 5% 60px; position: relative; margin-top: 0; z-index: 10; }
        .footer-content { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.5fr; gap: 50px; max-width: 1200px; margin: 0 auto; }
        .footer-col h4 { color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 25px; line-height: 1.3; }
        .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #b0b0b0; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--accent-teal); padding-left: 5px; }
        .footer-logo {
            width: 210px;
            display: block;
            margin-top: -35px;
            margin-left: -45px;
            margin-bottom: 15px;
            padding: 0;
        }

        .footer-col:first-child {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-top: 0;
        }

        .miami-address { margin-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; }
        .miami-address p { font-size: 0.9rem; line-height: 1.6; color: #999; }
        .miami-address p strong { color: #d0d0d0; font-weight: 600; }
        .footer-plus-icon { color: #4db6ac; font-size: 3rem; opacity: 0.8; font-weight: bold; transform: rotate(15deg); display: inline-block; margin-top: -10px; }
        .footer-socials { display: flex; gap: 12px; margin-top: 30px; }
        .footer-socials a { width: 45px; height: 45px; background: #000000; color: #ffffff; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 1.3rem; transition: 0.3s ease; }
        .footer-socials a:hover { transform: translateY(-3px); background: var(--accent-teal); }

        /* --- MOBİL UYUMLULUK --- */
        @media (max-width: 1024px) {
            .press-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .video-modal-content { width: 90%; }
        }

        @media (max-width: 992px) {
            .nav-center, .nav-right { display: none; }
            .hamburger-menu { display: block; }
            .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .footer-socials { justify-content: center; }
        }

        @media (max-width: 768px) {
            .press-page-title { font-size: 2.8rem; }
            .press-grid { grid-template-columns: 1fr; gap: 30px; }
        }

/* --- WhatsApp float button --- */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            z-index: 1500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: whatsapp-pulse 2.5s infinite;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }

        @keyframes whatsapp-pulse {
            0% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
                bottom: 18px;
                right: 18px;
            }
        }
