        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            --dark: #1a1a2e;
            --dark-secondary: #16213e;
            --accent: #0f4c75;
            --highlight: #3282b8;
            --text-light: #ffffff;
            --text-dark: #2c3e50;
            --text-muted: #7f8c8d;
            --success: #27ae60;
            --danger: #e74c3c;
            --warning: #f39c12;
            --card-bg: #ffffff;
            --overlay-bg: rgba(255, 255, 255, 0.97);
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.2);
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            background: #f8f9fa;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Background */
        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            opacity: 1;
        }

        .background-animation::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveGrid 20s linear infinite;
        }

        @keyframes moveGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 50%;
            right: -100px;
            animation-delay: 5s;
        }

        .shape:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: -75px;
            left: 30%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-50px) rotate(90deg); }
            50% { transform: translateY(-100px) rotate(180deg); }
            75% { transform: translateY(-50px) rotate(270deg); }
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        /* Top Bar */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 30px;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo {
            font-family: 'Almarai', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-light);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-subtitle {
            font-family: 'Almarai', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 4px;
            margin-right: 14px;
        }

        .logo::before {
            content: ' ';
            font-size: 2rem;
        }

        .admin-toggle-btn {
            background: var(--overlay-bg);
            backdrop-filter: blur(10px);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-family: 'Almarai', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .admin-toggle-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .admin-toggle-btn::before {
            content: '⚙️';
            font-size: 1.2rem;
        }

        /* Card Styles */
        .card {
            background: var(--overlay-bg);
            backdrop-filter: blur(20px);
            border-radius: var(--radius-lg);
            padding: 50px;
            box-shadow: var(--shadow-xl);
            animation: fadeInUp 0.6s ease-out;
            margin-bottom: 30px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Header Styles */
        .header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .header h1 {
            font-family: 'Almarai', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .header .subtitle {
            color: var(--text-muted);
            font-size: 1.2rem;
            font-weight: 500;
            margin-top: 10px;
        }

        /* Voting Timer */
        .voting-timer {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: center;
            margin-bottom: 30px;
            box-shadow: var(--shadow-md);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .voting-timer.active {
            background: var(--success-gradient);
            animation: none;
        }

        .timer-label {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 8px;
            opacity: 0.9;
        }

        .timer-display {
            font-family: 'Almarai', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
        }

        /* Name Items */
        .names-grid {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }

        .name-item {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border: 3px solid transparent;
            border-radius: var(--radius-md);
            padding: 30px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .name-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .name-item:hover {
            border-color: rgba(102, 126, 234, 0.5);
            transform: translateX(-8px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .name-item:hover::before {
            opacity: 0.1;
        }

        .name-item.selected {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
            transform: translateX(-8px) scale(1.03);
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
        }

        .name-item.selected::after {
            content: '✓';
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--success-gradient);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: var(--shadow-md);
            animation: checkmark 0.4s ease;
        }

        .name-item.disabled {
            pointer-events: none;
            opacity: 0.6;
            cursor: not-allowed;
        }

        @keyframes checkmark {
            0% { transform: scale(0) rotate(-180deg); }
            100% { transform: scale(1) rotate(0deg); }
        }

        .name-content {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .name-text {
            font-family: 'Almarai', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .name-description {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            margin-top: 8px;
            line-height: 1.5;
        }

        .name-badge {
            background: var(--primary-gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: var(--shadow-sm);
            min-width: 60px;
            text-align: center;
        }

        /* Vote Button */
        .vote-btn {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 20px 60px;
            border-radius: 50px;
            font-family: 'Almarai', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            cursor: pointer;
            width: 100%;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .vote-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .vote-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .vote-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
        }

        .vote-btn:disabled {
            background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
            cursor: not-allowed;
            transform: none;
            box-shadow: var(--shadow-sm);
        }

        .vote-btn span {
            position: relative;
            z-index: 1;
        }

        /* Results Section */
        .results-section {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 2px solid rgba(0, 0, 0, 0.1);
        }

        .results-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .results-header h2 {
            font-family: 'Almarai', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .results-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-box {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            padding: 25px;
            border-radius: var(--radius-md);
            text-align: center;
            border: 2px solid rgba(102, 126, 234, 0.2);
            transition: var(--transition);
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .stat-value {
            font-family: 'Almarai', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 600;
            margin-top: 5px;
        }

        .result-item {
            background: white;
            padding: 30px;
            border-radius: var(--radius-md);
            margin-bottom: 20px;
            border-right: 5px solid;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .result-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .result-item:hover {
            transform: translateX(-8px);
            box-shadow: var(--shadow-lg);
        }

        .result-item:hover::before {
            opacity: 0.05;
        }

        .result-item:nth-child(1) { border-color: #FFD700; }
        .result-item:nth-child(2) { border-color: #C0C0C0; }
        .result-item:nth-child(3) { border-color: #CD7F32; }
        .result-item:nth-child(n+4) { border-color: #667eea; }

        .result-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .result-rank {
            font-family: 'Almarai', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-muted);
            min-width: 40px;
        }

        .result-name {
            font-family: 'Almarai', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            flex: 1;
            margin: 0 20px;
        }

        .result-votes {
            background: var(--primary-gradient);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: var(--shadow-sm);
            white-space: nowrap;
        }

        .progress-container {
            position: relative;
            z-index: 1;
        }

        .progress-bar {
            height: 16px;
            background: #e9ecef;
            border-radius: 50px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 50px;
            transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 15px;
        }

        .progress-percentage {
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Admin Panel */
        .admin-panel {
            display: none;
        }

        .admin-panel.active {
            display: block;
        }

        .admin-section {
            margin-bottom: 40px;
        }

        .admin-section-title {
            font-family: 'Almarai', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid;
            border-image: var(--primary-gradient) 1;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e8ed;
            border-radius: var(--radius-sm);
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background: white;
        }

        .form-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .names-list {
            display: grid;
            gap: 15px;
            margin-bottom: 20px;
        }

        .name-list-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #f8f9fa;
            padding: 15px 20px;
            border-radius: var(--radius-sm);
            border: 2px solid #e1e8ed;
        }

        .name-list-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .delete-btn {
            background: var(--danger);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .delete-btn:hover {
            background: #c0392b;
            transform: scale(1.05);
        }

        .edit-btn {
            background: var(--highlight);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            margin-left: 10px;
        }

        .edit-btn:hover {
            background: #2c699e;
            transform: scale(1.05);
        }

        .name-actions {
            display: flex;
            gap: 10px;
        }

        .add-name-btn, .save-btn, .reset-all-btn {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-family: 'Almarai', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .add-name-btn:hover, .save-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .reset-all-btn {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            width: 100%;
            margin-top: 30px;
        }

        .reset-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
        }

        /* Messages */
        .message {
            padding: 20px 30px;
            border-radius: var(--radius-md);
            margin-top: 25px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            animation: slideDown 0.5s ease;
            box-shadow: var(--shadow-md);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message.success {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            color: #155724;
            border: 2px solid #c3e6cb;
        }

        .message.error {
            background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
            color: #721c24;
            border: 2px solid #f5c6cb;
        }

        .message.info {
            background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
            color: #0c5460;
            border: 2px solid #bee5eb;
        }

        .message.warning {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            color: #856404;
            border: 2px solid #ffeaa7;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .card {
                padding: 30px 25px;
            }

            .header h1 {
                font-size: 2.2rem;
            }

            .header .subtitle {
                font-size: 1rem;
            }

            .name-text {
                font-size: 1.4rem;
            }

            .name-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .vote-btn {
                padding: 18px 40px;
                font-size: 1.1rem;
            }

            .result-header-row {
                flex-wrap: wrap;
                gap: 10px;
            }

            .result-name {
                flex-basis: 100%;
                margin: 10px 0;
            }

            .logo {
                font-size: 1.3rem;
            }

            .admin-toggle-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }

            .card {
                padding: 25px 20px;
                border-radius: var(--radius-md);
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .name-item {
                padding: 20px;
            }

            .stat-value {
                font-size: 2rem;
            }

            .results-stats {
                grid-template-columns: 1fr;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Hidden */
        .hidden {
            display: none !important;
        }

        /* Login Modal */
        .login-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        .login-modal {
            background: white;
            border-radius: var(--radius-lg);
            padding: 50px;
            max-width: 450px;
            width: 90%;
            box-shadow: var(--shadow-xl);
            animation: slideUp 0.4s ease;
            position: relative;
        }

        .login-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .login-icon {
            font-size: 4rem;
            margin-bottom: 15px;
        }

        .login-title {
            font-family: 'Almarai', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .login-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .login-input-group {
            position: relative;
        }

        .login-input-group label {
            display: block;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .login-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e8ed;
            border-radius: var(--radius-sm);
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background: #f8f9fa;
        }

        .login-input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .login-input::placeholder {
            color: #bbb;
        }

        .login-btn {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-family: 'Almarai', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .login-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .login-error {
            background: #fee;
            color: #c33;
            padding: 12px 20px;
            border-radius: var(--radius-sm);
            text-align: center;
            font-weight: 600;
            border: 2px solid #fcc;
            animation: shake 0.4s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }

        .shake {
            animation: shake 0.4s ease;
        }

        .close-login-btn {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #f1f3f5;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .close-login-btn:hover {
            background: #e9ecef;
            transform: rotate(90deg);
        }

        .password-toggle {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--text-muted);
            padding: 5px;
            transition: var(--transition);
        }

        .password-toggle:hover {
            color: var(--text-dark);
        }

        @media (max-width: 480px) {
            .login-modal {
                padding: 30px 25px;
            }

            .login-title {
                font-size: 1.6rem;
            }

            .login-icon {
                font-size: 3rem;
            }
        }
