/**
 * RapidSpawn Games Order Form
 * RapidSpawn Theme with Blue/Purple Gradient & Cyan Accents
 */

/* ============================================
   BASE LAYOUT
============================================ */
#order-rapidspawn_games {
    margin: 0;
    padding: 0 0 40px 0;
    font-size: 14px;
    color: #d6d6d6;
}

#order-rapidspawn_games .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

#order-rapidspawn_games .cart-sidebar {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

#order-rapidspawn_games .cart-body {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 15px;
}

#order-rapidspawn_games .secondary-cart-body {
    flex: 0 0 65%;
    max-width: 65%;
    padding: 0 15px;
}

#order-rapidspawn_games .secondary-cart-sidebar {
    flex: 0 0 35%;
    max-width: 35%;
    padding: 0 15px;
}

/* Typography */
#order-rapidspawn_games h1,
#order-rapidspawn_games h2,
#order-rapidspawn_games h3,
#order-rapidspawn_games h4 {
    color: #ffffff;
    font-weight: 600;
}

#order-rapidspawn_games .font-size-36 { font-size: 32px; margin-bottom: 15px; }
#order-rapidspawn_games .font-size-30 { font-size: 26px; }
#order-rapidspawn_games p { color: #d6d6d6; }
#order-rapidspawn_games a { color: #20a8ec; text-decoration: none; }
#order-rapidspawn_games a:hover { color: #4fc3f7; }

/* Header - RapidSpawn Theme */
#order-rapidspawn_games .header-lined {
    border-bottom: 2px solid rgba(32, 168, 236, 0.5);
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}

#order-rapidspawn_games .header-lined::after {
    content: "\f11b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 48px;
    color: rgba(32, 168, 236, 0.2);
}

/* Sidebar Panel */
#order-rapidspawn_games .panel,
#order-rapidspawn_games .card-sidebar {
    background: rgba(14, 20, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#order-rapidspawn_games .panel-heading,
#order-rapidspawn_games .card-header {
    background: linear-gradient(135deg, rgba(74, 82, 212, 0.3) 0%, rgba(45, 56, 165, 0.2) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
}

#order-rapidspawn_games .panel-title,
#order-rapidspawn_games .card-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

#order-rapidspawn_games .list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #d6d6d6;
    padding: 12px 20px;
    display: block;
    transition: all 0.2s ease;
}

#order-rapidspawn_games .list-group-item:hover {
    background: rgba(32, 168, 236, 0.1);
    color: #20a8ec;
}

#order-rapidspawn_games .list-group-item.active {
    background: rgba(32, 168, 236, 0.15);
    color: #20a8ec;
    border-left: 3px solid #20a8ec;
}

/* Product Cards - RapidSpawn Style */
#order-rapidspawn_games .product {
    background: rgba(14, 20, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

#order-rapidspawn_games .product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a52d4, #20a8ec, #4a52d4);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#order-rapidspawn_games .product:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 168, 236, 0.4);
    box-shadow: 0 8px 40px rgba(32, 168, 236, 0.2);
}

#order-rapidspawn_games .product header {
    background: linear-gradient(135deg, rgba(74, 82, 212, 0.2) 0%, rgba(45, 56, 165, 0.1) 100%);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#order-rapidspawn_games .product header span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

#order-rapidspawn_games .product-desc {
    padding: 20px;
    flex: 1;
}

#order-rapidspawn_games .product-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#order-rapidspawn_games .product-desc ul li {
    color: #d6d6d6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#order-rapidspawn_games .product-desc ul li i {
    color: #20a8ec;
    margin-right: 10px;
}

#order-rapidspawn_games .product-desc .feature-value {
    color: #20a8ec;
    font-weight: 600;
}

#order-rapidspawn_games .product footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#order-rapidspawn_games .product-pricing {
    text-align: center;
    margin-bottom: 15px;
}

#order-rapidspawn_games .product-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    text-shadow: 0 0 20px rgba(32, 168, 236, 0.3);
}

#order-rapidspawn_games .product-pricing .cycle {
    font-size: 14px;
    color: #d6d6d6;
}

#order-rapidspawn_games .btn-order-now {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #4a52d4 0%, #2d38a5 100%);
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#order-rapidspawn_games .btn-order-now:hover {
    background: linear-gradient(135deg, #5a62e4 0%, #4a52d4 100%);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(74, 82, 212, 0.4);
    color: #ffffff;
}

/* View Cart */
#order-rapidspawn_games .view-cart-items-header {
    background: linear-gradient(135deg, rgba(74, 82, 212, 0.3) 0%, rgba(45, 56, 165, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 600;
}

#order-rapidspawn_games .view-cart-items {
    background: rgba(14, 20, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-bottom: 20px;
}

#order-rapidspawn_games .view-cart-items .item {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#order-rapidspawn_games .view-cart-items .item-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

#order-rapidspawn_games .view-cart-items .item-domain {
    color: #20a8ec;
}

#order-rapidspawn_games .view-cart-items .item-price span:first-child {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* Order Summary */
#order-rapidspawn_games .order-summary {
    background: rgba(14, 20, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 20px;
}

#order-rapidspawn_games .total-due-today {
    background: linear-gradient(135deg, rgba(74, 82, 212, 0.2) 0%, rgba(45, 56, 165, 0.1) 100%);
    border: 1px solid rgba(32, 168, 236, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

#order-rapidspawn_games .total-due-today .amt {
    font-size: 36px;
    font-weight: 700;
    color: #20a8ec;
    text-shadow: 0 0 20px rgba(32, 168, 236, 0.3);
}

#order-rapidspawn_games .btn-checkout {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #4a52d4 0%, #2d38a5 100%);
    border: none;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

#order-rapidspawn_games .btn-checkout:hover {
    background: linear-gradient(135deg, #5a62e4 0%, #4a52d4 100%);
    box-shadow: 0 0 25px rgba(74, 82, 212, 0.5);
    color: #ffffff;
}

/* Forms */
#order-rapidspawn_games .form-control {
    background: rgba(14, 20, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    padding: 10px 15px;
}

#order-rapidspawn_games .form-control:focus {
    border-color: #20a8ec;
    box-shadow: 0 0 0 3px rgba(32, 168, 236, 0.2);
}

#order-rapidspawn_games .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#order-rapidspawn_games label {
    color: #d6d6d6;
    font-weight: 500;
}

/* Buttons */
#order-rapidspawn_games .btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.2s ease;
    border: none;
}

#order-rapidspawn_games .btn-primary {
    background: linear-gradient(135deg, #4a52d4 0%, #2d38a5 100%);
    color: #ffffff;
}

#order-rapidspawn_games .btn-default {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d6d6d6;
}

#order-rapidspawn_games .btn-link {
    background: transparent;
    color: #20a8ec;
}

/* Alerts */
#order-rapidspawn_games .alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

#order-rapidspawn_games .alert-danger {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

#order-rapidspawn_games .alert-success {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

#order-rapidspawn_games .alert-warning {
    background: rgba(241, 196, 15, 0.15);
    border: 1px solid rgba(241, 196, 15, 0.3);
    color: #f1c40f;
}

#order-rapidspawn_games .alert-info {
    background: rgba(32, 168, 236, 0.15);
    border: 1px solid rgba(32, 168, 236, 0.3);
    color: #20a8ec;
}

/* Modals */
#order-rapidspawn_games .modal-content {
    background: rgba(14, 20, 59, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

#order-rapidspawn_games .modal-header,
#order-rapidspawn_games .modal-footer {
    border-color: rgba(255, 255, 255, 0.08);
}

#order-rapidspawn_games .modal-title {
    color: #ffffff;
}

#order-rapidspawn_games .modal-body {
    color: #d6d6d6;
}

/* Tabs */
#order-rapidspawn_games .nav-tabs {
    border: none;
    background: linear-gradient(135deg, rgba(74, 82, 212, 0.2) 0%, rgba(45, 56, 165, 0.1) 100%);
}

#order-rapidspawn_games .nav-tabs .nav-link {
    border: none;
    color: #d6d6d6;
    padding: 15px;
}

#order-rapidspawn_games .nav-tabs .nav-link.active {
    color: #20a8ec;
    background: rgba(14, 20, 59, 0.9);
    border-bottom: 2px solid #20a8ec;
}

/* ============================================
   GAME HERO BANNER
============================================ */
#order-rapidspawn_games .game-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    padding: 120px 40px;
    margin-bottom: 40px;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#order-rapidspawn_games .game-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 20, 59, 0.5) 0%, rgba(14, 20, 59, 0.3) 100%);
    z-index: 1;
}

#order-rapidspawn_games .hero-content {
    position: relative;
    z-index: 2;
}

#order-rapidspawn_games .game-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

#order-rapidspawn_games .game-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
}

#order-rapidspawn_games .hero-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#order-rapidspawn_games .hero-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

#order-rapidspawn_games .hero-features li i {
    color: #20a8ec;
    margin-right: 8px;
}

/* ============================================
   PRICING SECTION HEADER
============================================ */
#order-rapidspawn_games .pricing-section {
    text-align: center;
    margin-bottom: 40px;
}

#order-rapidspawn_games .section-header .game-count {
    display: inline-block;
    background: rgba(32, 168, 236, 0.15);
    color: #20a8ec;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#order-rapidspawn_games .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

#order-rapidspawn_games .section-header .brand-highlight {
    color: #20a8ec;
}

/* ============================================
   GAME PRODUCT CARDS (BisectHosting Style)
============================================ */

/* Use CSS Grid for equal height cards with dynamic sizing */
#order-rapidspawn_games .game-products > .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 10px;
    max-width: 1400px;
    margin: 0 auto;
}

#order-rapidspawn_games .game-products .col-lg-3,
#order-rapidspawn_games .game-products .col-md-6,
#order-rapidspawn_games .game-products .col-sm-6 {
    max-width: 100%;
    flex: none;
    padding: 0;
    width: 100%;
}

#order-rapidspawn_games .game-product-card {
    background: rgba(14, 20, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(20px, 4vw, 35px) clamp(15px, 3vw, 30px);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

#order-rapidspawn_games .game-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(32, 168, 236, 0.5);
    box-shadow: 0 15px 50px rgba(32, 168, 236, 0.25);
}

#order-rapidspawn_games .game-product-card.popular {
    border-color: rgba(74, 82, 212, 0.6);
    box-shadow: 0 8px 30px rgba(74, 82, 212, 0.3);
}

#order-rapidspawn_games .game-product-card.popular:hover {
    box-shadow: 0 15px 50px rgba(74, 82, 212, 0.4);
}

/* Server Icon */
#order-rapidspawn_games .server-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(32, 168, 236, 0.3) 0%, rgba(32, 168, 236, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid rgba(32, 168, 236, 0.3);
    flex-shrink: 0;
}

#order-rapidspawn_games .server-icon i {
    font-size: 18px;
    color: #20a8ec;
}

#order-rapidspawn_games .game-product-card.popular .server-icon {
    background: linear-gradient(135deg, rgba(74, 82, 212, 0.4) 0%, rgba(74, 82, 212, 0.2) 100%);
    border-color: rgba(74, 82, 212, 0.5);
}

#order-rapidspawn_games .game-product-card.popular .server-icon i {
    color: #7c84e8;
}

/* Popular Badge - positioned at top of card */
#order-rapidspawn_games .game-product-card .popular-badge {
    position: absolute !important;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4a52d4 0%, #2d38a5 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(74, 82, 212, 0.5);
    white-space: nowrap;
}

#order-rapidspawn_games .game-product-card .popular-badge i {
    margin-right: 5px;
}

/* Add extra top padding to popular cards to make room for badge */
#order-rapidspawn_games .game-product-card.popular {
    padding-top: 55px;
}

/* Product Name - fluid typography */
#order-rapidspawn_games .game-product-card .product-name {
    font-size: clamp(14px, 1.2vw + 10px, 20px);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Description */
#order-rapidspawn_games .game-product-card .product-description {
    font-size: clamp(11px, 0.8vw + 8px, 14px);
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

/* Product Price */
#order-rapidspawn_games .game-product-card .product-price {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#order-rapidspawn_games .game-product-card .product-price .bundle-tag {
    display: inline-block;
    background: rgba(32, 168, 236, 0.2);
    color: #20a8ec;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

#order-rapidspawn_games .game-product-card .product-price .starting-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#order-rapidspawn_games .game-product-card .product-price .price-amount {
    font-size: clamp(24px, 2vw + 16px, 36px);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(32, 168, 236, 0.3);
    display: block;
    white-space: nowrap;
    line-height: 1.1;
}

#order-rapidspawn_games .game-product-card .product-price .price-cycle {
    font-size: clamp(11px, 0.8vw + 8px, 14px);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Buy Button */
#order-rapidspawn_games .btn-buy-plan {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #20a8ec 0%, #1a8bc4 100%);
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
}

#order-rapidspawn_games .btn-buy-plan:hover {
    background: linear-gradient(135deg, #4fc3f7 0%, #20a8ec 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(32, 168, 236, 0.4);
    color: #ffffff;
}

#order-rapidspawn_games .game-product-card.popular .btn-buy-plan {
    background: linear-gradient(135deg, #4a52d4 0%, #2d38a5 100%);
}

#order-rapidspawn_games .game-product-card.popular .btn-buy-plan:hover {
    background: linear-gradient(135deg, #5a62e4 0%, #4a52d4 100%);
    box-shadow: 0 8px 25px rgba(74, 82, 212, 0.4);
}

/* Product Features - hidden by default for cleaner cards */
#order-rapidspawn_games .game-product-card .product-features {
    display: none;
}

/* Stock Info */
#order-rapidspawn_games .game-product-card .stock-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

#order-rapidspawn_games .game-product-card .stock-info i {
    color: #20a8ec;
    margin-right: 8px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1399px) {
    #order-rapidspawn_games .game-products > .row {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 1199px) {
    #order-rapidspawn_games .game-products > .row {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 991px) {
    #order-rapidspawn_games .cart-sidebar,
    #order-rapidspawn_games .cart-body,
    #order-rapidspawn_games .secondary-cart-body,
    #order-rapidspawn_games .secondary-cart-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #order-rapidspawn_games .order-summary {
        position: static;
        margin-top: 30px;
    }
    #order-rapidspawn_games .game-hero {
        padding: 80px 25px;
    }
    #order-rapidspawn_games .game-title {
        font-size: 36px;
    }
    #order-rapidspawn_games .game-products > .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 575px) {
    #order-rapidspawn_games .game-products > .row {
        grid-template-columns: 1fr;
    }
    #order-rapidspawn_games .game-product-card {
        min-height: auto;
        padding: 25px 20px;
    }
    #order-rapidspawn_games .game-product-card.popular {
        padding-top: 50px;
    }
    #order-rapidspawn_games .game-product-card .popular-badge {
        top: 10px;
    }
    #order-rapidspawn_games .game-hero {
        padding: 60px 20px;
    }
    #order-rapidspawn_games .game-title {
        font-size: 28px;
    }
    #order-rapidspawn_games .section-header h2 {
        font-size: 24px;
    }
}

/* ============================================
   DOMAIN REGISTRATION PAGE
============================================ */
#order-rapidspawn_games .domain-checker-container,
#order-rapidspawn_games .domain-checker-bg {
    background: rgba(14, 20, 59, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

#order-rapidspawn_games .domain-checker-container .form-control,
#order-rapidspawn_games .domain-checker-container textarea,
#order-rapidspawn_games #frmDomainChecker .form-control,
#order-rapidspawn_games #frmDomainChecker textarea {
    background: rgba(14, 20, 59, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px;
}

#order-rapidspawn_games .domain-checker-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

#order-rapidspawn_games .bg-white,
#order-rapidspawn_games .tld-pricing-container {
    background: rgba(14, 20, 59, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

#order-rapidspawn_games .tld-pricing-header {
    background: rgba(43, 53, 160, 0.4) !important;
    color: #ffffff !important;
    font-weight: 600;
}

#order-rapidspawn_games .tld-row {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #d6d6d6 !important;
}

#order-rapidspawn_games .tld-row:hover {
    background: rgba(32, 168, 236, 0.1) !important;
}

#order-rapidspawn_games .tld-row strong {
    color: #ffffff !important;
}

#order-rapidspawn_games .tld-filters .badge {
    background: rgba(14, 20, 59, 0.8);
    color: #d6d6d6;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

#order-rapidspawn_games .tld-filters .badge:hover,
#order-rapidspawn_games .tld-filters .badge.active {
    background: rgba(32, 168, 236, 0.3);
    border-color: #20a8ec;
    color: #20a8ec;
}

#order-rapidspawn_games .domain-promo-box {
    background: rgba(14, 20, 59, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

#order-rapidspawn_games .domain-promo-box h3 {
    color: #ffffff;
}

#order-rapidspawn_games .suggested-domains .panel-heading {
    background: rgba(43, 53, 160, 0.4);
    color: #ffffff;
}

#order-rapidspawn_games .domain-suggestion {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #d6d6d6 !important;
}

/* ============================================
   HIDE COLLAPSED SIDEBAR ON DESKTOP
============================================ */
#order-rapidspawn_games .sidebar-collapsed {
    display: none !important;
}

/* ============================================
   GAME BACKGROUND IMAGES ON CARDS
============================================ */

/* Game product card with background image */
#order-rapidspawn_games .game-product-card {
    position: relative;
    overflow: hidden;
}

/* Add game background using CSS variable with blur for legibility */
#order-rapidspawn_games .game-product-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: var(--product-bg);
    background-size: cover;
    background-position: center top;
    opacity: 0.4;
    filter: blur(4px);
    z-index: 0;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

#order-rapidspawn_games .game-product-card:hover::before {
    opacity: 0.55;
    filter: blur(3px);
}

/* Ensure content stays above background (except badge which is absolute) */
#order-rapidspawn_games .game-product-card > *:not(.popular-badge) {
    position: relative;
    z-index: 3;
}

/* Add gradient overlay for better text readability */
#order-rapidspawn_games .game-product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(14, 20, 59, 0.5) 0%,
        rgba(14, 20, 59, 0.75) 40%,
        rgba(14, 20, 59, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   GAME SELECTION GRID (BisectHosting Style)
============================================ */

/* Hero Section */
#order-rapidspawn_games .game-selection-hero {
    background: linear-gradient(135deg, #4a52d4 0%, #2d38a5 50%, #1a1f65 100%);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#order-rapidspawn_games .game-selection-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

#order-rapidspawn_games .game-selection-hero .hero-content {
    position: relative;
    z-index: 1;
}

#order-rapidspawn_games .game-selection-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#order-rapidspawn_games .game-selection-hero .hero-title i {
    color: #20a8ec;
    margin-right: 15px;
}

#order-rapidspawn_games .game-selection-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Game Selection Container */
#order-rapidspawn_games .game-selection-container {
    padding: 0 20px;
}

/* Game Selection Grid */
#order-rapidspawn_games .game-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 0 40px;
}

/* Game Card */
#order-rapidspawn_games .game-card {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#order-rapidspawn_games .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(32, 168, 236, 0.3);
    border-color: rgba(32, 168, 236, 0.5);
}

#order-rapidspawn_games .game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 20, 59, 0.2) 0%,
        rgba(14, 20, 59, 0.6) 50%,
        rgba(14, 20, 59, 0.95) 100%
    );
    transition: background 0.3s ease;
}

#order-rapidspawn_games .game-card:hover::before {
    background: linear-gradient(
        180deg,
        rgba(32, 168, 236, 0.1) 0%,
        rgba(14, 20, 59, 0.5) 50%,
        rgba(14, 20, 59, 0.9) 100%
    );
}

/* Game Card Overlay Content */
#order-rapidspawn_games .game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}

#order-rapidspawn_games .game-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4a52d4 0%, #20a8ec 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(32, 168, 236, 0.4);
}

#order-rapidspawn_games .game-card-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

#order-rapidspawn_games .game-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#order-rapidspawn_games .game-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: #20a8ec;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

#order-rapidspawn_games .game-card:hover .game-card-cta {
    color: #4fc3f7;
    transform: translateX(5px);
}

#order-rapidspawn_games .game-card-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

#order-rapidspawn_games .game-card:hover .game-card-cta i {
    transform: translateX(3px);
}

/* ============================================
   RESPONSIVE - SHOW COLLAPSED SIDEBAR ON MOBILE
============================================ */
@media (max-width: 991px) {
    #order-rapidspawn_games .sidebar-collapsed {
        display: block !important;
        margin-bottom: 20px;
    }

    #order-rapidspawn_games .cart-sidebar {
        display: none;
    }

    #order-rapidspawn_games .game-selection-hero {
        padding: 40px 20px;
    }

    #order-rapidspawn_games .game-selection-hero .hero-title {
        font-size: 1.8rem;
    }

    #order-rapidspawn_games .game-selection-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    #order-rapidspawn_games .game-card {
        height: 180px;
    }
}

@media (max-width: 575px) {
    #order-rapidspawn_games .game-selection-grid {
        grid-template-columns: 1fr;
    }

    #order-rapidspawn_games .game-card {
        height: 200px;
    }
}

/* ============================================
   CHECKOUT PAGE STYLING
============================================ */

/* Section Headings - Page specific only */
#order-rapidspawn_games .sub-heading {
    margin: 30px 0 20px;
    padding: 0;
    position: relative;
}

#order-rapidspawn_games .sub-heading span.primary-bg-color,
#order-rapidspawn_games .sub-heading > span.primary-bg-color,
#order-rapidspawn_games .sub-heading > span {
    display: inline-block !important;
    background: linear-gradient(135deg, rgba(74, 82, 212, 0.5) 0%, rgba(45, 56, 165, 0.4) 100%) !important;
    background-color: rgba(74, 82, 212, 0.5) !important;
    color: #ffffff !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

#order-rapidspawn_games .sub-heading span small,
#order-rapidspawn_games .sub-heading .primary-bg-color small {
    font-weight: 400 !important;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0;
}

/* Form Container */
#order-rapidspawn_games #frmCheckout {
    background: transparent;
}

/* Hide icon labels - they should not be visible, only the icons inside inputs */
#order-rapidspawn_games .form-group.prepend-icon > label.field-icon {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    color: rgba(255, 255, 255, 0.5) !important;
    z-index: 5 !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    background: transparent !important;
    border: none !important;
}

#order-rapidspawn_games .form-group.prepend-icon > label.field-icon i {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Form inputs with prepend icons */
#order-rapidspawn_games .form-group.prepend-icon input.form-control,
#order-rapidspawn_games .form-group.prepend-icon input.field,
#order-rapidspawn_games .form-group.prepend-icon select.form-control,
#order-rapidspawn_games .form-group.prepend-icon select.field {
    padding-left: 40px !important;
    background: rgba(14, 20, 59, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    height: 48px !important;
    width: 100% !important;
}

#order-rapidspawn_games .form-group.prepend-icon input.form-control:focus,
#order-rapidspawn_games .form-group.prepend-icon select.form-control:focus {
    border-color: #20a8ec !important;
    box-shadow: 0 0 0 3px rgba(32, 168, 236, 0.2) !important;
    outline: none !important;
}

#order-rapidspawn_games .form-group.prepend-icon input.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Hide any white boxes/extra labels */
#order-rapidspawn_games .form-group.prepend-icon > label:not(.field-icon),
#order-rapidspawn_games .form-group > label:not(.field-icon):not(.radio-inline):not(.checkbox-inline) {
    display: none !important;
}

/* Fix white boxes - hide any stray elements */
#order-rapidspawn_games .iti__flag-container,
#order-rapidspawn_games .intl-tel-input .iti__flag-box {
    background: transparent !important;
}

/* Phone input international styling */
#order-rapidspawn_games .iti,
#order-rapidspawn_games .intl-tel-input {
    width: 100% !important;
}

#order-rapidspawn_games .iti__selected-flag,
#order-rapidspawn_games .intl-tel-input .selected-flag {
    background: rgba(14, 20, 59, 0.8) !important;
    border: none !important;
    border-radius: 8px 0 0 8px !important;
    padding-left: 12px !important;
}

#order-rapidspawn_games .iti__country-list,
#order-rapidspawn_games .intl-tel-input .country-list {
    background: #0e143b !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

#order-rapidspawn_games .iti__country,
#order-rapidspawn_games .intl-tel-input .country {
    color: #ffffff !important;
}

#order-rapidspawn_games .iti__country:hover,
#order-rapidspawn_games .intl-tel-input .country:hover {
    background: rgba(32, 168, 236, 0.2) !important;
}

/* Select dropdowns */
#order-rapidspawn_games select.form-control,
#order-rapidspawn_games .field.form-control[name="country"],
#order-rapidspawn_games #inputCountry,
#order-rapidspawn_games #inputState,
#order-rapidspawn_games #inputDomainContact,
#order-rapidspawn_games #inputSecurityQId {
    background: rgba(14, 20, 59, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    height: 48px;
    padding: 10px 15px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
}

#order-rapidspawn_games select.form-control option {
    background: #0e143b;
    color: #ffffff;
    padding: 10px;
}

/* Already Registered Button Section */
#order-rapidspawn_games .already-registered {
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#order-rapidspawn_games .already-registered p {
    margin: 0;
}

#order-rapidspawn_games #btnAlreadyRegistered,
#order-rapidspawn_games #btnNewUserSignup {
    background: linear-gradient(135deg, #20a8ec 0%, #1a8bc4 100%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
}

#order-rapidspawn_games #btnAlreadyRegistered:hover,
#order-rapidspawn_games #btnNewUserSignup:hover {
    background: linear-gradient(135deg, #4fc3f7 0%, #20a8ec 100%);
}

/* Row Spacing */
#order-rapidspawn_games #containerNewUserSignup .row,
#order-rapidspawn_games #containerExistingUserSignin .row {
    margin-bottom: 0;
}

#order-rapidspawn_games #containerNewUserSignup .col-sm-6,
#order-rapidspawn_games #containerNewUserSignup .col-sm-12,
#order-rapidspawn_games #containerNewUserSignup .col-sm-4,
#order-rapidspawn_games #containerNewUserSignup .col-sm-5,
#order-rapidspawn_games #containerNewUserSignup .col-sm-3,
#order-rapidspawn_games #containerExistingUserSignin .col-sm-6 {
    padding: 0 10px;
    margin-bottom: 15px;
}

/* Total Due Today - Checkout */
#order-rapidspawn_games #totalDueToday {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.2) 0%, rgba(39, 174, 96, 0.1) 100%) !important;
    border: 1px solid rgba(39, 174, 96, 0.4) !important;
    color: #27ae60 !important;
    border-radius: 10px;
    padding: 20px 30px;
    font-size: 16px;
}

#order-rapidspawn_games #totalDueToday #totalCartPrice {
    color: #4ade80 !important;
    font-size: 24px;
}

/* Payment Methods */
#order-rapidspawn_games #paymentGatewaysContainer {
    text-align: center;
    padding: 20px 0;
}

#order-rapidspawn_games #paymentGatewaysContainer .radio-inline {
    display: inline-block;
    margin: 5px 15px;
    color: #d6d6d6;
}

#order-rapidspawn_games #paymentGatewaysContainer input[type="radio"] {
    margin-right: 8px;
}

/* Credit Card Input Fields */
#order-rapidspawn_games .cc-input-container {
    background: rgba(14, 20, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

#order-rapidspawn_games .cc-input-container .input-group {
    display: flex;
}

#order-rapidspawn_games .cc-input-container .input-group .form-control {
    border-radius: 8px 0 0 8px !important;
}

#order-rapidspawn_games .cc-input-container .input-group-btn .btn,
#order-rapidspawn_games .cc-input-container .input-group-append .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    color: #d6d6d6;
    border-radius: 0 8px 8px 0;
    height: 48px;
    padding: 0 15px;
}

#order-rapidspawn_games .cc-input-container ul {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

#order-rapidspawn_games .cc-input-container .radio-inline {
    color: #d6d6d6;
}

/* Existing Cards Grid */
#order-rapidspawn_games .existing-cc-grid {
    margin-bottom: 20px;
}

/* Password Strength Meter */
#order-rapidspawn_games .password-strength-meter {
    margin-top: 10px;
}

#order-rapidspawn_games .password-strength-meter .progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 6px;
    overflow: hidden;
}

#order-rapidspawn_games .password-strength-meter .progress-bar {
    transition: width 0.3s ease;
}

#order-rapidspawn_games .password-strength-meter p {
    font-size: 12px;
    margin-top: 5px;
}

/* Generate Password Button */
#order-rapidspawn_games .generate-password {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d6d6d6;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
}

#order-rapidspawn_games .generate-password:hover {
    background: rgba(32, 168, 236, 0.2);
    border-color: rgba(32, 168, 236, 0.4);
    color: #20a8ec;
}

/* Terms Checkbox */
#order-rapidspawn_games #accepttos {
    margin-right: 8px;
}

#order-rapidspawn_games .checkbox-inline {
    color: #d6d6d6;
}

/* Complete Order Button */
#order-rapidspawn_games #btnCompleteOrder {
    background: linear-gradient(135deg, #4a52d4 0%, #2d38a5 100%);
    border: none;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#order-rapidspawn_games #btnCompleteOrder:hover {
    background: linear-gradient(135deg, #5a62e4 0%, #4a52d4 100%);
    box-shadow: 0 8px 30px rgba(74, 82, 212, 0.4);
    transform: translateY(-2px);
}

#order-rapidspawn_games #btnCompleteOrder:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Security Message */
#order-rapidspawn_games .checkout-security-msg {
    background: rgba(241, 196, 15, 0.1) !important;
    border: 1px solid rgba(241, 196, 15, 0.3) !important;
    color: #f1c40f !important;
    margin-top: 30px;
    text-align: center;
}

#order-rapidspawn_games .checkout-security-msg i {
    margin-right: 10px;
}

/* Apply Credit Container */
#order-rapidspawn_games .apply-credit-container {
    background: rgba(14, 20, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

#order-rapidspawn_games .apply-credit-container p {
    margin-bottom: 15px;
}

#order-rapidspawn_games .apply-credit-container .radio {
    margin: 10px 0;
}

#order-rapidspawn_games .apply-credit-container label {
    color: #d6d6d6;
    cursor: pointer;
}

/* Marketing Opt-in */
#order-rapidspawn_games .marketing-email-optin {
    background: rgba(14, 20, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

#order-rapidspawn_games .marketing-email-optin h4 {
    margin: 0 0 10px;
}

/* Account Selection */
#order-rapidspawn_games .account-select-container .account {
    background: rgba(14, 20, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

#order-rapidspawn_games .account-select-container .account:hover {
    border-color: rgba(32, 168, 236, 0.3);
}

#order-rapidspawn_games .account-select-container .account.active {
    border-color: #20a8ec;
    background: rgba(32, 168, 236, 0.1);
}

#order-rapidspawn_games .account-select-container .address {
    color: #d6d6d6;
}

#order-rapidspawn_games .account-select-container .address strong {
    color: #ffffff;
}

/* Field Errors */
#order-rapidspawn_games .field-error-msg {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

#order-rapidspawn_games .has-error .field-error-msg {
    display: block;
}

#order-rapidspawn_games .has-error .form-control {
    border-color: #e74c3c !important;
}

/* Existing Login */
#order-rapidspawn_games #containerExistingUserSignin {
    margin-bottom: 30px;
}

#order-rapidspawn_games #btnExistingLogin {
    background: linear-gradient(135deg, #4a52d4 0%, #2d38a5 100%);
    border: none;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 500;
}

/* Gateway Errors */
#order-rapidspawn_games .gateway-errors {
    margin: 20px 0;
}

/* Notes Textarea */
#order-rapidspawn_games textarea.form-control {
    background: rgba(14, 20, 59, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    min-height: 100px;
    padding: 15px;
}

#order-rapidspawn_games textarea.form-control:focus {
    border-color: #20a8ec !important;
    box-shadow: 0 0 0 3px rgba(32, 168, 236, 0.2) !important;
}

#order-rapidspawn_games textarea.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* =============================================
   Multiselect Dropdown Styling (TLDs, etc.)
   ============================================= */

#order-rapidspawn_games .multiselect-native-select,
#order-rapidspawn_games .btn-group.multiselect-container,
.domains-row .multiselect-native-select,
.domains-row .btn-group {
    min-width: 160px !important;
}

#order-rapidspawn_games .multiselect,
#order-rapidspawn_games .multiselect.dropdown-toggle,
#order-rapidspawn_games button.multiselect,
.domains-row .multiselect,
.domains-row button.multiselect {
    min-width: 160px !important;
    width: auto !important;
    max-width: none !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
    padding-right: 30px !important;
    background: rgba(14, 20, 59, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}

#order-rapidspawn_games .multiselect .caret,
.domains-row .multiselect .caret {
    margin-left: 10px !important;
}

/* Ensure the dropdown row has enough space */
#order-rapidspawn_games .domains-row,
.domains-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    align-items: center !important;
}

/* Multiselect dropdown menu */
#order-rapidspawn_games .multiselect-container.dropdown-menu,
.multiselect-container.dropdown-menu {
    background: rgba(14, 20, 59, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
}

#order-rapidspawn_games .multiselect-container.dropdown-menu li a,
.multiselect-container.dropdown-menu li a {
    color: #ffffff !important;
}

#order-rapidspawn_games .multiselect-container.dropdown-menu li a:hover,
#order-rapidspawn_games .multiselect-container.dropdown-menu li.active a,
.multiselect-container.dropdown-menu li a:hover,
.multiselect-container.dropdown-menu li.active a {
    background: rgba(32, 168, 236, 0.3) !important;
}
