@font-face {
    font-family: 'Oswald';
    src: url('/font/Oswald-Bold.ttf') format('truetype');
}
        :root {
            --primary-bg: #0962ea;
            --card-bg: rgba(255, 255, 255, 0.05);
            --card-border: rgba(255, 255, 255, 0.12);
        }

.mcmxci {
    user-select: none;
    font-family: "Oswald", sans-serif;
    color: #fff;
    /* Mobilde taşmayı önlemek için minimum, masaüstü için vh değeri */
    font-size: clamp(3rem, 15vw, 20vh);
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
    white-space: nowrap;
    font-optical-sizing: auto;
    line-height: 1;
    text-shadow:
        0 0 5px rgba(255,255,255,.9),
        0 0 10px rgba(255,255,255,.7),
        0 0 20px rgba(255,255,255,.5),
        0 0 40px rgba(255,255,255,.25);
    filter: brightness(1.08);
}

        body,
        html {
            height: 100%;
            margin: 0;
            background-color: var(--primary-bg);
            color: #ffffff;
        }

        .main-container {
            min-height: 100vh;
        }

        .pro-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            backdrop-filter: blur(12px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }

        .pro-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(255, 255, 255, 0.15);
            color: inherit;
        }

        .card-img-wrapper {
            position: relative;
            height: 140px;
            overflow: hidden;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .pro-card:hover .card-img-wrapper img {
            transform: scale(1.05);
        }

        .card-img-overlay-custom {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(9, 98, 234, 0.6) 100%);
        }

        /* Sağ Bölüm Tasarımı */
        .right-section {
            position: relative;
        }
        .subtitle {
            font-weight: 400;
            color: #fff;
            font-size: 1.15rem;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
        }

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            font-size: 1.25rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        .social-icons a:hover {
            background: #ffffff;
            color: var(--primary-bg);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Düzeltmeler */
        @media (max-width: 768px) {
            .left-section {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        /* Etkileşimli Alan */
        .interactive-box {
            position: relative;
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(255, 255, 255, 0.2);
            padding: 40px;
            border-radius: 8px;
            transition: all 0.4s ease-in-out;
            overflow: hidden;
            max-width: 700px;
            width: 100%;
        }

        /* Başlangıçta okunamayan ve bulanık yazılar */
        .interactive-box p {
            color: #fff;
            font-family: monospace;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
