        :root {
            --primary-dark: #070a2f;
            --accent-gold: #ffc107;
            --white: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-color: var(--primary-dark);
        }

        .bg-wrapper {
            background-image: linear-gradient(rgba(7, 10, 47, 0.4), rgba(7, 10, 47, 0.8)), url('https://10x.egyedviktor.hu/uploads/userfiles/img/video/bg-ok.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .flex-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .glass-card {
            background-color: rgba(7, 10, 47, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 193, 7, 0.1);
            border-radius: 2.5rem !important;
            overflow: hidden;
        }

        /* Hero Text Styles */
        .display-3 {
            font-weight: 800;
            letter-spacing: -1.5px;
            line-height: 1.1;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .text-warning {
            color: var(--accent-gold) !important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Improved Promo Box */
        .promo-banner {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
            border: 2px dashed rgba(255, 193, 7, 0.4);
            border-radius: 1.5rem;
            position: relative;
            animation: fadeIn 1s ease-out;
        }

        .promo-badge {
            position: absolute;
            top: -15px;
            left: 20px;
            background: var(--accent-gold);
            color: #000;
            padding: 4px 15px;
            font-weight: 800;
            font-size: 0.75rem;
            text-transform: uppercase;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .promo-text {
            color: var(--accent-gold);
            font-size: 1.1rem;
            font-weight: 600;
        }

        .promo-subtext {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Button Animations */
        .btn-reg {
            background: linear-gradient(45deg, #ffc107, #ff9800);
            border: none;
            color: #000;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-reg:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .btn-reg:hover:after {
            left: 100%;
        }

        .btn-reg:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4);
            color: #000;
        }

        @keyframes pulse-gold {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        .pulse-btn {
            animation: pulse-gold 2s infinite;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeIn 0.8s ease-out forwards;
        }

        /* Responsive Tweaks */
        @media (max-width: 991.98px) {
            .display-3 {
                font-size: 2.8rem;
            }

            .glass-card {
                border-radius: 1.5rem !important;
            }
        }
        .person-img {
            position: absolute;
            bottom: -20px;
            right: -20px;
            max-width: 450px;
            z-index: 0;
            opacity: 0.9;
            pointer-events: none;
            transition: all 0.5s ease;
        }

        @media (max-width: 1200px) {
            .person-img {
                max-width: 350px;
                right: -50px;
            }
        }

        @media (max-width: 991.98px) {
            .person-img {
                display: none;
                /* Hide on smaller screens to keep focus on text */
            }
        }

        .card-body-content {
            position: relative;
            z-index: 1;
        }