        /* Main Page Styles */
        .main-page {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .main-page h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .main-page p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .popup-overlay.active {
            display: flex;
        }

        /* Popup Container */
        .popup-container {
            background: var(--glass-background);
            backdrop-filter: blur(var(--glass-blur));
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            box-shadow: var(--glass-shadow);
            padding: 2rem;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: popupSlideIn 0.3s ease-out;
        }

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

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--glass-border);
        }

        .popup-header h2 {
            font-size: 1.5rem;
            color: var(--text-color);
        }

        .close-btn {
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-btn:hover {
            color: var(--accent-color);
            transform: scale(1.1);
        }

        /* Step Indicator */
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .step {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0.5rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .step.active {
            background: var(--primary-gradient);
            color: white;
        }

        .step.completed {
            background: var(--success-color);
            color: white;
        }

        /* Service Selection */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .service-card {
            background: var(--card-gradient);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(104, 147, 236, 0.3);
            border-color: var(--primary-color);
        }

        .service-card.selected {
            border-color: var(--primary-color);
            background: rgba(104, 147, 236, 0.1);
            box-shadow: 0 0 20px rgba(104, 147, 236, 0.3);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .minecraft-icon {
            color: #00AA00;
        }

        .discord-icon {
            color: #5865F2;
        }

        .vps-icon {
            color: var(--accent-color);
        }

        .service-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .service-card p {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Slider Styles */
        .slider-container {
            margin-bottom: 2rem;
        }

        .slider-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }

        .slider-wrapper {
            position: relative;
            margin-bottom: 1rem;
        }

        .slider {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-gradient);
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(104, 147, 236, 0.5);
        }

        .slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-gradient);
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 10px rgba(104, 147, 236, 0.5);
        }

        .slider-marks {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
        }

        .slider-mark {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .slider-value {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-light);
            margin-top: 0.5rem;
        }

        /* Order Summary */
        .order-summary {
            background: var(--card-gradient);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .order-summary h3 {
            margin-bottom: 1rem;
            color: var(--primary-light);
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .summary-item:last-child {
            border-bottom: none;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--success-color);
        }

        /* Navigation Buttons */
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
        }

        .nav-buttons .btn {
            min-width: 120px;
        }

        .final-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .final-buttons .btn {
            min-width: 150px;
        }

        /* Step Content */
        .step-content {
            display: none;
        }

        .step-content.active {
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .popup-container {
                width: 95%;
                padding: 1.5rem;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .final-buttons {
                flex-direction: column;
            }

            .nav-buttons {
                flex-direction: column;
                gap: 1rem;
            }
        }
        /* Tier Selection */
        .tier-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .tier-card {
            background: var(--card-gradient);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .tier-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(104, 147, 236, 0.3);
            border-color: var(--primary-color);
        }

        .tier-card.selected {
            border-color: var(--primary-color);
            background: rgba(104, 147, 236, 0.1);
            box-shadow: 0 0 20px rgba(104, 147, 236, 0.3);
        }

        .tier-card.out-of-stock {
            opacity: 0.5;
            cursor: not-allowed;
            background: rgba(255, 0, 0, 0.1);
            border-color: rgba(255, 0, 0, 0.3);
        }

        .tier-card.out-of-stock:hover {
            transform: none;
            box-shadow: none;
        }

        .out-of-stock-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent-color);
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .tier-price {
            color: var(--primary-light);
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Location Selection */
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .location-card {
            background: var(--card-gradient);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(104, 147, 236, 0.3);
            border-color: var(--primary-color);
        }

        .location-card.selected {
            border-color: var(--primary-color);
            background: rgba(104, 147, 236, 0.1);
            box-shadow: 0 0 20px rgba(104, 147, 236, 0.3);
        }

        .location-card.out-of-stock {
            opacity: 0.5;
            cursor: not-allowed;
            background: rgba(255, 0, 0, 0.1);
            border-color: rgba(255, 0, 0, 0.3);
        }

        .location-card.out-of-stock:hover {
            transform: none;
            box-shadow: none;
        }

        .location-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary-light);
        }

        /* Progress Bar */
        .progress-bar-container {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .progress-bar {
            width: 300px;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 3px;
            transition: width 0.3s ease;
            width: 16.67%; /* Start at step 1 of 6 */
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            width: 300px;
            margin-top: 0.5rem;
        }

        .progress-step {
            font-size: 0.8rem;
            opacity: 0.7;
            color: var(--text-color);
        }

        .progress-step.active {
            opacity: 1;
            color: var(--primary-light);
            font-weight: 600;
        }

        /* Pricing Display */
        .pricing-info {
            background: var(--card-gradient);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 1rem;
            margin-top: 1rem;
            text-align: center;
        }

        .current-price {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--success-color);
        }