﻿        *, :after, :before {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        html, body {
            --sb-track-color: #1b1b1b;
            --sb-thumb-color: #cb3c6d;
            --sb-size: 15px;
            scrollbar-color: var(--sb-thumb-color) var(--sb-track-color) !important;
            scrollbar-width: thin;
        }

        ::-webkit-scrollbar {
            width: var(--sb-size);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--sb-thumb-color);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-track {
            background: var(--sb-track-color);
            border-radius: 4px;
        }

        body {
            font-family: Poppins, sans-serif;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            background-color: #0c0c0c;
            color: #fff;
            min-height: 100vh;
            position: relative;
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: rgba(9, 9, 9, 0);
        }

        body::before {
            content: '';
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url('../../images/site/fond.webp');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: 50%;
            opacity: 0.6;
            z-index: -1;
        }


        .main-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-height: calc(100vh - 170px);
        }

        .hero-container {
            width: 100%;
            max-width: 900px;
            padding: 0 20px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo-container {
            margin-top: 40px;
            margin-bottom: 18px;
        }

        .logo-container img {
            width: 146px;
            height: auto;
            filter: drop-shadow(0 4px 20px rgba(203, 60, 109, 0.25));
        }

        .welcome-title {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 16px;
            color: #fff;
            letter-spacing: 0.3px;
        }

        .description {
            font-size: 14px;
            font-weight: 300;
            color: #c9c9c9;
            max-width: 640px;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .question {
            font-size: 14px;
            font-weight: 400;
            color: #fff;
            margin-bottom: 8px;
        }

        .buttons-container {
            display: flex;
            gap: 18px;
            margin-top: 8px;
            margin-bottom: 42px;
        }

        .btn {
            display: inline-block;
            position: relative;
            padding: 0.55rem 2rem;
            font-family: Poppins, sans-serif;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.5;
            color: #fff;
            text-align: center;
            cursor: pointer;
            user-select: none;
            border: 3px solid transparent;
            background-color: transparent;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
            z-index: 0;
            letter-spacing: 0.4px;
        }

        .btn-primary {
            background-color: #cb3c6d;
        }

        .btn-primary::before {
            display: block;
            content: "";
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background-image: linear-gradient(90deg, #892c2c, #9d2a51);
            opacity: 1;
            transition: opacity 0.15s ease-in-out;
            z-index: -1;
        }

        .btn-primary.active {
            border: 3px solid #cb3c6d;
            color: #fff;
            background-color: transparent;
        }

        .btn-primary.active::before {
            opacity: 0;
        }


        .patch-note {
            width: 100%;
            max-width: 900px;
            text-align: left;
            margin-top: 1.5rem;
            margin-bottom: 60px;
        }

        .patch-note-header {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
            padding-bottom: 12px;
            border-bottom: 3px solid #cb3c6d;
            margin-bottom: 22px;
            display: inline-block;
            color: #fff;
        }

        .patch-note-content {
            border-left: 3px solid #cb3c6d;
            padding-left: 22px;
        }

        .patch-note-content h3 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }

        .patch-note-content p {
            font-size: 13px;
            font-weight: 300;
            color: #bdbdbd;
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .patch-note-content p:last-child {
            margin-bottom: 0;
        }

        .patch-note-content a {
            color: #cb3c6d;
            font-weight: 500;
            text-decoration: none;
        }

        .patch-note-content a:hover {
            text-decoration: underline;
        }


        .footer {
            padding: 28px 20px 34px;
            margin-top: 42px;
            text-align: center;
            font-size: 11px;
            color: #666;
        }

        .footer a {
            color: #888;
            text-decoration: none;
            margin: 0 5px;
        }

        .footer a:hover {
            color: #fff;
        }

        .footer span {
            color: #444;
        }


        .icon-svg {
            width: 20px;
            height: 20px;
            fill: #888;
            transition: fill 0.3s;
            cursor: pointer;
        }

        .icon-svg:hover {
            fill: #fff;
        }

        .section-detail {
            width: 100%;
            max-width: 900px;
            text-align: center;
            margin-bottom: 2rem;
        }
        .section-heading {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }
        .section-text {
            font-size: 13px;
            font-weight: 300;
            color: #c9c9c9;
            line-height: 1.7;
            margin-bottom: 0.75rem;
        }
        .section-link {
            display: inline-block;
            margin-top: 0.75rem;
            color: #cb3c6d;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
        }
        .section-link:hover {
            text-decoration: underline;
        }

