        *,
        ::after,
        ::before {
            box-sizing: border-box;
        }

        :root {
            --bg: #121212;
            --card: #1e1e1e;
            --button: #2c2c2c;
            --highlight: #00e1ff;
        }

        body {
            margin: 0;
            padding: 20px;
            font-family: 'Poppins', sans-serif;
            background: var(--bg);
            color: #fff;
            display: grid;
            place-items: center;
        }

        .container {
            max-width: 1000px;
            width: 100%;
            gap: 25px;
            padding: 20px 0;
            display: flex;
            flex-direction: row;
            scroll-snap-type: x mandatory;
        }

        .platf {
            width: 1%;
            flex: Auto;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .vod img {
            width: 100%;
            border-radius: 5px;
        }

        .vod {
            display: block;
            margin-top: 15px;
            width: 100%;
        }

        /* Card yapı */
        .platform-card {
            background: rgba(30, 30, 30, 0.6);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            transition: 0.3s ease;
            scroll-snap-align: center;
            flex: auto;
        }

        .platform-card:hover {
            transform: translateY(-3px);
        }

        /* Başlık alanı */
        .platform-header {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--highlight);
            border-bottom: 1px solid #333;
            padding-bottom: 8px;
        }

        .platform-header i {
            margin-right: 10px;
        }

        /* Platform renkleri */
        .windows .platform-header {
            color: #00aaff;
        }

        .android .platform-header {
            color: #a4c639;
        }

        .mac .platform-header {
            color: #ccc;
        }

        .platform-header .file-size {
            font-size: 0.95rem;
            color: #ccc;
        }

        /* Link butonları */
        .link-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .link-buttons a {
            flex: 1 1 100%;
            background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
            color: #fff;
            text-decoration: none;
            padding: 14px 18px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 1px solid #333;
            font-size: 1rem;
            transition: 0.2s ease;
        }

        @media (min-width: 600px) {
            .link-buttons a {
                flex: 1 1 calc(33.333% - 10px);
            }
        }

        .link-buttons a i {
            font-size: 1.2rem;
            min-width: 20px;
            text-align: center;
        }

        .link-buttons a:hover {
            background: linear-gradient(145deg, #00e1ff, #66ffff);
            color: #000;
            box-shadow: 0 0 10px var(--highlight);
            transform: scale(1.03);
        }

        .link-buttons a:hover i {
            transform: rotate(-5deg);
            transition: transform 0.3s ease;
        }

        /* Form alanları */
        input[type="text"],
        select {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border-radius: 8px;
            background: #181818;
            border: 1px solid #333;
            color: white;
            font-size: 1rem;
            transition: border 0.2s ease;
        }

        input[type="text"]:focus,
        select:focus {
            outline: none;
            border-color: var(--highlight);
        }

        input:hover,
        select:hover {
            border-color: var(--highlight);
            box-shadow: 0 0 0 1px var(--highlight);
        }

        input::placeholder {
            color: #777;
            font-style: italic;
        }

        /* Etiket */
        label {
            display: block;
            margin-top: 10px;
            color: #ccc;
            font-size: 0.95rem;
        }

        /* Genel butonlar */
        button {
            padding: 10px 16px;
            background: var(--highlight);
            color: #000;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.2s ease;
            margin-top: 10px;
        }

        button i {
            margin-right: 5px
        }

        button:hover {
            background: #00c2e0;
            transform: scale(1.03);
            box-shadow: 0 0 8px #00e1ff55;
        }

        input,
        textarea,
        select,
        button {
            font-family: "Poppins", sans-serif;
        }


        .platt img {
            width: 100%;
            border-radius: 5px;
        }

        .platt {
            width: 20%;
        }

        .platt a {
            width: 100%;
            display: block;
            margin-bottom: 15px;
            display: block;
            padding: 5px;
            border-radius: 10px;
        }

        .platt a:last-child {
            margin: 0;
        }

        .platt a:hover {
            transform: translateY(-3px) scale(1.03);
        }

        @media (max-width:700px) {
            .container {
                flex-wrap: wrap;
            }

            .platt {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
            }

            .platt a {
                flex: auto;
                width: 40%;
            }

            .platt img {
                width: 100%;
            }
        }