        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:ital,wght@0,700;0,900;1,800;1,900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --club-blue: #0b3d82;
            --club-red: #d31122;
            --dark-bg: #060913;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            position: relative;
        }

        .bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://i.imgur.com/rl2oyZm.png');
            background-size: cover;
            background-position: center;
            z-index: -2;
            opacity: 0.4;
        }

        .overlay-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                linear-gradient(105deg, rgba(6, 9, 19, 0.95) 0%, rgba(11, 61, 130, 0.7) 100%),
                repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
            z-index: -1;
        }

        .main-wrapper {
            max-width: 1200px;
            width: 100%;
            padding: 40px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            position: relative;
            z-index: 10;
        }

        .content-side {
            flex: 1;
            max-width: 650px;
        }

        .logo-side {
            flex: 0.8;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .logo-side::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(211, 17, 34, 0.15) 0%, transparent 70%);
            z-index: -1;
        }

        .club-logo {
            width: 100%;
            max-width: 320px;
            height: auto;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
            animation: floatLogo 6s ease-in-out infinite;
        }

        @keyframes floatLogo {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-15px) rotate(-2deg);
            }
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--club-red);
            color: #fff;
            padding: 8px 16px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            transform: skewX(-10deg);
            box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
        }

        .status-badge span {
            transform: skewX(10deg);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            font-style: italic;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 25px;
            text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
        }

        h1 .highlight {
            color: var(--club-red);
            display: block;
        }

        p {
            font-size: 1.15rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 40px;
            font-weight: 400;
            max-width: 90%;
        }

        .progress-block {
            margin-bottom: 40px;
            padding-left: 15px;
            border-left: 3px solid var(--club-blue);
        }

        .progress-labels {
            display: flex;
            justify-content: space-between;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .progress-track {
            width: 100%;
            height: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            transform: skewX(-10deg);
        }

        .progress-fill {
            height: 100%;
            background: var(--club-red);
            width: 55%;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.15) 10px, rgba(0, 0, 0, 0.15) 20px);
        }

        .socials {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            background: rgba(11, 61, 130, 0.2);
            border: 1px solid rgba(11, 61, 130, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-btn:hover {
            background: var(--club-blue);
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(11, 61, 130, 0.4);
        }

        .footer {
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            line-height: 1.6;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }

        .footer a:hover {
            color: var(--club-red);
        }

        @media (max-width: 900px) {
            .main-wrapper {
                flex-direction: column-reverse;
                text-align: center;
                gap: 40px;
                padding-top: 60px;
            }

            .content-side {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            h1 {
                font-size: 3rem;
            }

            p {
                max-width: 100%;
            }

            .progress-block {
                width: 100%;
                border-left: none;
                padding-left: 0;
            }

            .club-logo {
                max-width: 200px;
            }

            .status-badge {
                margin: 0 auto 25px;
            }
        }