        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: #fff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 800px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            position: relative;
        }

        .section {
            padding: 30px;
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .active {
            display: block;
        }

        /* Welcome Section Styles */
        .welcome-section {
            text-align: center;
        }

        .welcome-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ff8a00, #e52e71);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: colorChange 3s infinite alternate;
        }

        .welcome-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ddd;
        }

        .start-btn {
            padding: 15px 40px;
            font-size: 1.3rem;
            background: linear-gradient(135deg, #ff8a00, #e52e71);
            border: none;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(229, 46, 113, 0.4);
            margin-top: 20px;
            font-weight: bold;
        }

        .start-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(229, 46, 113, 0.6);
        }

        /* Language Section Styles */
        .language-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .language-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            flex: 1 1 200px;
            min-width: 200px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .language-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            background: linear-gradient(135deg, #2980b9, #1f618d);
        }
        
        #get-location-btn {
            background: linear-gradient(135deg, #56ab2f, #a8e063);
            width: 100%;
        }
        
        #get-location-btn:hover {
             background: linear-gradient(135deg, #a8e063, #56ab2f);
        }

        /* Guidelines Section Styles */
        .guidelines-container {
            max-height: 400px;
            overflow-y: auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 20px 0;
            text-align: left;
        }
        
        .guidelines-container h2 {
            font-size: 1.5rem;
            color: #ffcc00;
            margin-top: 20px;
            margin-bottom: 10px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 5px;
        }
        
        .guidelines-container h2:first-child {
            margin-top: 0;
        }
        
        .guidelines-container hr {
            border: 0;
            height: 2px;
            background: #555;
            margin: 30px 0;
        }

        .guidelines-title {
            text-align: center;
            margin-bottom: 20px;
            color: #ffcc00;
        }

        .guidelines-content {
            line-height: 1.7;
            font-size: 1rem;
        }
        
        .guidelines-content h3 {
            margin: 15px 0 10px;
            color: #3498db;
            font-weight: 600;
             font-size: 1.2rem;
        }

        .guidelines-content ol {
            margin-left: 20px;
            margin-bottom: 15px;
            list-style-type: decimal;
        }

        .guidelines-content li {
            margin-bottom: 10px;
        }
        
        .guidelines-content p {
            margin-bottom: 10px;
        }

        .checkbox-container {
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
        }

        .checkbox-container:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .checkbox-container input {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            cursor: pointer;
        }
        
        .checkbox-container label {
            font-size: 1.1rem;
            line-height: 1.4;
            cursor: pointer;
            font-weight: bold;
        }

        /* Form Section Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #ffcc00;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        
        .form-group select option {
             background: #333;
             color: #fff;
        }
        
        .form-group select#country, .form-group select#state {
            max-height: 150px;
            overflow-y: auto;
        }
        
        .form-group select:disabled {
            background: rgba(255, 255, 255, 0.05);
            color: #888;
            cursor: not-allowed;
        }
        
        #location-status {
            color: #ffcc00;
            text-align: center;
            font-size: 0.9rem;
            display: none;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        #location-help {
            color: #ffcc00;
            background: rgba(255, 204, 0, 0.1);
            border: 1px solid #ffcc00;
            border-radius: 8px;
            padding: 10px;
            font-size: 0.9rem;
            text-align: center;
            margin-bottom: 15px;
            display: none;
        }

        .form-group input:focus, .form-group select:focus {
            outline: 2px solid #3498db;
            background: rgba(255, 255, 255, 0.15);
        }

        .error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
            font-weight: bold;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }

        /* Confirmation Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s;
        }

        .modal-content {
            background: #222;
            padding: 30px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }
        
        .modal-content h2 {
            margin-bottom: 15px;
        }
        
        .modal-content p {
            font-size: 1.1rem;
            color: #ddd;
        }

        .modal-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .modal-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .confirm-btn {
            background: #2ecc71;
            color: white;
        }

        .cancel-btn {
            background: #e74c3c;
            color: white;
        }

        .modal-btn:hover {
            transform: translateY(-3px);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes colorChange {
            0% { color: #ff8a00; }
            25% { color: #e52e71; }
            50% { color: #9b59b6; }
            75% { color: #3498db; }
            100% { color: #2ecc71; }
        }

        .language-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .pixel-logo {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }

        @media (max-width: 600px) {
            .welcome-title {
                font-size: 1.8rem;
            }
            .language-options {
                flex-direction: column;
            }
            .language-btn {
                width: 100%;
            }
        }
