 .services-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 60px 0;
    margin-bottom: 50px;
}
        .services-hero h1 {
            color: #fff;
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .services-hero p {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-box {
            max-width: 600px;
            margin: 30px auto 0;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border-radius: 30px;
            border: none;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.95);
        }
        
        .search-button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            cursor: pointer;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .service-category {
            background: rgba(30, 33, 48, 0.95);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .service-category:hover {
            transform: translateY(-5px);
            border-color: #667eea;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        
        .service-category.disabled {
            opacity: 0.6;
            cursor: not-allowed;
            background: rgba(30, 33, 48, 0.4);
            position: relative;
        }
        
        .service-category.disabled::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            pointer-events: none;
        }
        
        .service-category.disabled:hover {
            transform: none;
            border-color: rgba(102, 126, 234, 0.2);
            box-shadow: none;
        }
        
        .category-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-right: 20px;
        }
        
        .category-gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
        .category-vip { background: linear-gradient(135deg, #ef4444, #dc2626); }
        .category-boost { background: linear-gradient(135deg, #3b82f6, #2563eb); }
        .category-custom { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        
        .category-title {
            flex: 1;
        }
        
        .category-title h2 {
            color: #fff;
            font-size: 1.5rem;
            margin: 0 0 5px 0;
        }
        
        .category-title span {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        .category-description {
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .category-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .category-features li {
            padding: 8px 0;
            color: rgba(255,255,255,0.7);
            display: flex;
            align-items: center;
        }
        
        .category-features li i {
            color: #10b981;
            margin-right: 10px;
        }
        
        .category-price {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(102, 126, 234, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price-tag {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fbbf24;
        }
        
        .price-period {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }
        
        .btn-select {
            padding: 10px 25px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .btn-select:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .section-divider {
            text-align: center;
            margin: 50px 0;
            position: relative;
        }
        
        .section-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(102, 126, 234, 0.3);
        }
        
        .section-divider span {
            background: #16171b;
            padding: 0 20px;
            position: relative;
            color: #667eea;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /* Tabs for switching views */
        .view-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 30px 0;
        }
        
        .view-tab {
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 2px solid transparent;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }
        
        .view-tab.active {
            background: white;
            color: #667eea;
            font-weight: bold;
        }
        
        .view-tab:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        /* Search Section */
        .search-section {
            background: rgba(30, 33, 48, 0.95);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            display: none;
        }
        
        .search-section.active {
            display: block;
        }
        
        .my-servers-list {
            display: none;
        }
        
        .my-servers-list.active {
            display: block;
        }
        
        .server-result {
            background: rgba(0, 0, 0, 0.3);
            border: 2px solid transparent;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .server-result:hover {
            border-color: #667eea;
            background: rgba(102, 126, 234, 0.1);
        }
        
        .server-info h4 {
            color: #fff;
            margin: 0 0 5px 0;
        }
        
        .server-info span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .btn-order {
            padding: 8px 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-order:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        /* Countdown Timer Styles */
        #gold-countdown-info {
            animation: pulse 2s infinite;
        }
        
        #gold-countdown-button .countdown-text {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
		
		    .order-hero {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            padding: 40px 0;
            margin-bottom: 40px;
        }
        .order-hero h1 {
            color: #fff;
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .order-hero p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .mobile-preview-container {
            display: none !important;
        }
        
        @media (max-width: 1200px) {
            .mobile-preview-container {
                display: block !important;
                margin-bottom: 30px;
            }
            
            .mobile-preview-container .server-preview-sticky {
                position: relative !important;
                transform: none !important;
                opacity: 1 !important;
                width: 100% !important;
                margin: 0 !important;
            }
        }
        
        /* Sticky Server Preview - Initially positioned relative */
        .server-preview-sticky {
            position: relative;
            left: 0;
            transform: none;
            width: 100%;
            max-width: 600px;
            margin: 0 auto 20px;
            background: #2b2d3e;
            border-radius: 8px;
            border: 2px solid #667eea;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        
        .server-preview-sticky.sticky-active {
            position: fixed !important;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            margin: 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
            animation: slideDown 0.3s ease;
            z-index: 1000 !important;
        }
        
        @keyframes slideDown {
            from {
                top: -100px;
                opacity: 0;
            }
            to {
                top: 80px;
                opacity: 1;
            }
        }
        
        @media (max-width: 768px) {
            .server-preview-sticky {
                width: 100%;
                max-width: 95%;
            }
            
            .server-preview-sticky.sticky-active {
                top: 60px;
                width: 95%;
            }
        }
        
        /* Placeholder to maintain layout when sticky */
        .preview-placeholder {
            display: none;
            height: 150px;
        }
        
        .preview-placeholder.active {
            display: block;
        }
        
        .server-preview-sticky.has-border {
            animation: borderGlow 2s infinite;
        }
        
        @keyframes borderGlow {
            0%, 100% { 
                box-shadow: 0 0 15px var(--glow-color, currentColor); 
            }
            50% { 
                box-shadow: 0 0 30px var(--glow-color, currentColor); 
            }
        }
        
        @keyframes pulse {
            0% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
            100% { transform: translateX(-50%) scale(1); }
        }
        
        .preview-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
        }
        
        .vip-icon-preview {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .text-message-preview {
            background: linear-gradient(90deg, #f59e0b 0%, #dc2626 100%);
            color: #fff;
            padding: 10px;
            text-align: center;
            font-size: 0.9rem;
            font-weight: bold;
            border-radius: 0 0 8px 8px;
            margin-top: -1px;
        }
        

        
        .service-info-card {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }
        
        .service-info-card h2 {
            color: #fff;
            margin-bottom: 10px;
        }
        
        .service-info-card p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Service Tabs */
        .service-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            justify-content: center;
        }
        
        .service-tabs button {
            padding: 12px 30px;
            background: #2a2d3e;
            color: #94a3b8;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .service-tabs button.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
        }
        
        /* Days Selector */
        .days-selector {
            background: #1e2130;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .days-selector h3 {
            color: #fbbf24;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }
        
        .quantity-control button {
            width: 40px;
            height: 40px;
            background: #2a2d3e;
            border: 1px solid #667eea;
            color: #fff;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quantity-control input {
            width: 80px;
            height: 40px;
            text-align: center;
            background: #2a2d3e;
            border: 1px solid #667eea;
            color: #fff;
            border-radius: 5px;
            font-size: 1.2rem;
        }
        
        /* VIP Options */
        .vip-option {
            background: #1e2130;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .vip-option:hover {
            border-color: #667eea;
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
        }
        
        .vip-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: #667eea;
            transform: scaleY(0);
            transition: transform 0.3s;
        }
        
        .vip-option:hover::before {
            transform: scaleY(1);
        }
        
        .vip-option input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }
        
        .vip-option-info {
            flex: 1;
            margin-left: 15px;
        }
        
        .vip-option-info h5 {
            color: #fff;
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .vip-option-info p {
            color: #6c757d;
            font-size: 0.85rem;
            margin: 0;
        }
        
        .vip-option-price {
            color: #fbbf24;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        /* Color Picker */
        .color-picker {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .color-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        
        .color-option:hover,
        .color-option.selected {
            border-color: #fff;
            transform: scale(1.2);
        }
        
        /* Icon Picker */
        .icon-picker {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }
        
        .icon-option {
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .icon-option:hover,
        .icon-option.selected {
            background: #667eea;
            transform: scale(1.2);
        }
        
        /* Text Input */
        .text-input {
            width: 100%;
            padding: 8px 12px;
            background: #2a2d3e;
            border: 1px solid #667eea;
            color: #fff;
            border-radius: 5px;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        
        .period-selection {
            background: #1e2130;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .period-selection h3 {
            color: #fff;
            margin-bottom: 20px;
        }
        
        .period-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .period-option {
            position: relative;
            cursor: pointer;
        }
        
        .period-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }
        
        .period-option label {
            display: block;
            background: rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .period-option input[type="radio"]:checked + label {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border-color: #667eea;
        }
        
        .period-option label:hover {
            border-color: rgba(102, 126, 234, 0.5);
        }
        
        .period-option .period-name {
            color: #fff;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }
        
        .period-option .period-price {
            color: #667eea;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .period-option .period-unit {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }
        
        .order-summary {
            background: rgba(30, 33, 48, 0.95);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .order-summary h3 {
            color: #fff;
            margin-bottom: 20px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(102, 126, 234, 0.2);
            color: rgba(255, 255, 255, 0.8);
        }
        
        .summary-row:last-child {
            border-bottom: none;
            padding-top: 15px;
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
        }
        
        .summary-row .value {
            color: #667eea;
            font-weight: 600;
        }
        
        .order-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 50px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 0 auto;
        }
        
        .order-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }
        
        .order-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Payment Modal */
        .payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        
        .payment-modal.active {
            display: flex;
        }
        
        .modal-content {
            background: #1e2130;
            border-radius: 15px;
            padding: 30px;
            max-width: 450px;
            width: 90%;
            text-align: center;
        }
        
        .modal-header {
            margin-bottom: 25px;
        }
        
        .modal-header h2 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .modal-header .service-type {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }
        
        .modal-header .price {
            color: #10b981;
            font-size: 2rem;
            font-weight: bold;
        }
        
        .modal-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .icon-picker {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
            padding: 15px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 8px;
        }
        
        .icon-option {
            width: 45px;
            height: 45px;
            border: 2px solid #667eea;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.3s;
            background: transparent;
        }
        
        .icon-option:hover {
            background: rgba(102, 126, 234, 0.3);
            transform: scale(1.1);
        }
        
        .icon-option.selected {
            background: #667eea;
            border-color: #fbbf24;
        }
        
        .paypal-button {
            background: #ffc439;
            color: #003087;
            padding: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
        }
        
        .paypal-button:hover {
            background: #f0b90b;
            transform: translateY(-2px);
        }
        
        .card-button {
            background: #2a2d3e;
            color: #fff;
            padding: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
        }
        
        .card-button:hover {
            background: #363a4f;
            border-color: #667eea;
        }
        
        .modal-footer {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .cancel-button {
            background: transparent;
            color: #94a3b8;
            border: 1px solid rgba(255,255,255,0.1);
            padding: 12px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        
        .cancel-button:hover {
            background: rgba(255,255,255,0.05);
        }
        
        .powered-by {
            color: #6c757d;
            font-size: 0.85rem;
            margin-top: 15px;
        }
        
        .powered-by img {
            height: 20px;
            vertical-align: middle;
            margin-left: 5px;
        }
        
        @media (max-width: 768px) {
            .period-options {
                grid-template-columns: 1fr;
            }
        }