
        /* --- FONT TANIMLAMA --- */
        @font-face {
            font-family: 'Northwell';
            src: url('Northwell.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        /* Temel Ayarlar */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #142948;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- NAVIGASYON --- */
        nav {
            background: linear-gradient(to bottom, #142948 0%, #0a0a0a 100%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            z-index: 1001;
        }

        .logo-area img {
            height: 50px;
            filter: brightness(1.2);
            width: auto;
        }

        .logo-area span {
            font-family: 'Northwell', cursive;
            font-size: 34px;
            color: #ffffff;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 18px;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.2px;
            opacity: 0.7;
            transition: 0.3s;
        }

        .nav-links a:hover, .nav-links a.active { 
            opacity: 1; 
            color: #27f4d2;
        }

        .apply-btn {
            background-color: #111111;
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 800;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 1px solid rgba(255,255,255,0.15);
            transition: 0.3s;
        }

        .apply-btn:hover { 
            background: white; 
            color: #142948; 
            transform: translateY(-2px); 
        }

        .menu-toggle {
            display: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        /* --- HERO --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 20, 35, 0.7), rgba(10, 20, 35, 0.7)), 
                        url('rayfelmun.jpg') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 5%;
        }

        .hero-content {
            background-color: rgba(255, 255, 255, 0.6);
            padding: 40px 30px; 
            border-radius: 40px;
            max-width: 750px; 
            width: 100%;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            backdrop-filter: blur(0px);
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
            margin-top: 150px; /* Kartalın ayağının temas etmesi için aşağı kaydırıldı */
        }

        /* Kartal Ayarlamaları - Biraz daha sola kaydırıldı */
        .hero-content::before {
            content: "";
            position: absolute;
            top: -245px; 
            left: -80px; 
            width: 280px; 
            height: 280px; 
            background: url('maskot2.png') no-repeat center bottom/contain;
            z-index: 10;
            pointer-events: none;
            transform: translateY(15px); 
        }

        .hero-content h1 {
            font-family: 'Northwell', cursive;
            font-size: clamp(60px, 10vw, 120px); 
            color: #142948;
            line-height: normal;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .hero-content p.slogan {
            font-size: 15px; 
            font-weight: 600;
            color: #142948;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0.8;
            margin-bottom: 30px;
        }

        /* --- COUNTDOWN --- */
        .countdown {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }

        .time-box {
            background: #f4f7fa;
            padding: 15px; 
            border-radius: 18px;
            min-width: 85px;
            border: 1px solid rgba(20, 41, 72, 0.1);
        }

        .time-box span {
            display: block;
            font-family: 'Antonio', sans-serif;
            font-size: 32px; 
            font-weight: 700;
            color: #142948;
            line-height: 1;
        }

        .time-box label {
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 1.5px;
            color: #142948;
            opacity: 0.5;
            text-transform: uppercase;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #0a0a0a;
            padding: 80px 8% 40px 8%;
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 40px;
            color: white;
            align-items: start;
        }

        .footer-brand img { 
            width: 250px; 
            height: auto; 
            margin-bottom: 25px; 
            display: block;
        }

        .footer-brand h2 { 
            font-family: 'Antonio', sans-serif; 
            font-size: 36px; 
            text-transform: uppercase; 
            line-height: 1.1;
        }

        .footer-brand h2 span { color: #27f4d2; }

        .footer-brand p { 
            opacity: 0.6; 
            font-style: italic; 
            margin-top: 10px; 
            font-size: 15px;
        }

        .footer-col h4 { 
            font-size: 12px; 
            letter-spacing: 2px; 
            margin-bottom: 25px; 
            color: #27f4d2; 
            text-transform: uppercase; 
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { 
            color: white; 
            text-decoration: none; 
            opacity: 0.6; 
            transition: 0.3s; 
            font-size: 13px; 
            text-transform: uppercase;
            font-weight: 600;
        }
        .footer-col ul li a:hover { opacity: 1; color: #27f4d2; padding-left: 5px; }

        .social-icons { display: flex; gap: 20px; }
        .social-icons a { color: white; text-decoration: none; }
        .social-icons i { font-size: 22px; opacity: 0.7; transition: 0.3s; cursor: pointer; }
        .social-icons i:hover { opacity: 1; color: #27f4d2; transform: translateY(-3px); }

        .bottom-bar {
            background-color: #65001a;
            padding: 30px 8%;
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 12px;
            color: rgba(255,255,255,0.5);
        }

        /* --- MOBIL UYUMLULUK --- */
        @media (max-width: 992px) {
            footer { grid-template-columns: 1.5fr 1fr; gap: 50px; }
        }

        @media (max-width: 768px) {
            .menu-toggle { display: block; }

            .nav-right {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: #0a0a0a;
                flex-direction: column;
                justify-content: center;
                gap: 40px;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                box-shadow: -10px 0 30px rgba(0,0,0,0.5);
            }

            .nav-right.active { right: 0; }

            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }

            .nav-links a { font-size: 16px; opacity: 1; }

            .hero-content { padding: 30px 20px; width: 92%; margin-top: 130px; }
            .hero-content h1 { font-size: clamp(50px, 12vw, 75px); }

            .hero-content::before {
                width: 190px; 
                height: 190px; 
                top: -160px; 
                left: -40px; 
                transform: translateY(15px);
            }

            .countdown { 
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                max-width: 250px;
                margin: 20px auto 0 auto;
            }

            .time-box span { font-size: 24px; }

            footer { grid-template-columns: 1fr; text-align: center; }
            .footer-brand img { margin: 0 auto 20px auto; width: 200px; }
            .social-icons { justify-content: center; }
            .bottom-bar { flex-direction: column; gap: 15px; text-align: center; }
        }
    
