        :root {
            --primary: #3DDC84;
            --bg: #121212;
            --text: #FFFFFF;
        }

        body,
        html {
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
            color: var(--text);
            overflow-x: hidden;
        }

        .banner {
            height: 100vh;
            background: radial-gradient(circle at 20% 30%,
                    rgba(35, 37, 153, 0.493),
                    transparent 40%),
                radial-gradient(circle at 80% 70%,
                    rgba(139, 92, 246, 0.08),
                    transparent 40%),
                #160f2a;
            animation: glowMove 2s ease-in-out infinite alternate;
        }

        @keyframes glowMove {
            0% {
                background-position: 20% 30%, 80% 70%;
            }

            100% {
                background-position: 25% 35%, 75% 65%;
            }
        }

        .banner {
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            padding: 20px;
            padding-top: 15vh;
            position: relative;
        }

        .banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-family: system-ui;
            color: var(--primary);
        }

        .banner p {
            font-size: 1.2rem;
            max-width: 600px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 120px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        .logo {
            width: 120px;
            margin-bottom: 20px;
            animation: soft-bounce 3s ease-in-out infinite;
        }

        @keyframes soft-bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .store-section {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: #ffffff;
            color: #121212;
        }

        .store-section h2 {
            margin-bottom: 40px;
        }

        .store-link img {
            width: 200px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .store-link img:active {
            transform: scale(0.95);
        }

        .hidden-section {
            display: none;
        }

        .invite-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 320px;
            max-width: 90%;
        }

        .invite-form input {
            padding: 10px 12px;
            font-size: 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
        }

        .invite-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-top: 8px;
        }

        .btn-icon {
            background: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            color: #444;
        }

        .btn-icon:hover {
            background: #e5e5e5;
            border-color: #ccc;
        }

        .btn-primary {
            background: var(--primary);
            color: #000;
            border: none;
            border-radius: 6px;
            padding: 10px 20px;
            font-weight: bold;
            cursor: pointer;
            flex: 1;
            transition: opacity 0.2s;
        }

        .btn-primary:active {
            opacity: 0.8;
        }

        #ci-username {
            background: #efefef;
            color: #626262;
        }

        .password-wrapper {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .password-wrapper input {
            flex: 1;
        }

        .strength-meter {
            height: 4px;
            width: 100%;
            background-color: #eee;
            border-radius: 2px;
            margin-top: -6px;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .strength-bar {
            height: 100%;
            width: 0%;
            transition: width 0.3s ease, background-color 0.3s ease;
        }

        .strength-bar.weak {
            width: 33%;
            background-color: #ff4d4d;
        }

        .strength-bar.medium {
            width: 66%;
            background-color: #ffa500;
        }

        .strength-bar.strong {
            width: 100%;
            background-color: #3DDC84;
        }

        .password-requirements {
            list-style: none;
            padding: 0;
            margin: 10px 0;
            font-size: 0.85rem;
            text-align: left;
        }

        p.help {
            max-width: 40em;
        }

        .requirement {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #888;
            margin-bottom: 4px;
            transition: color 0.2s;
        }

        .requirement.met {
            color: #3DDC84;
        }

        .requirement.unmet {
            color: #ff4d4d;
        }

        .requirement svg {
            width: 14px;
            height: 14px;
        }

        #customercode {
            font-family: monospace;
            color: #3348b7;
            border: 1px solid #7191ff;
            padding: 2px;
        }