.game-floating-crown {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    animation: floatAround 12s ease-in-out infinite;
    pointer-events: none;
}

.crown-1 { top: 10%; left: 10%; animation-delay: 0s; }
.crown-2 { top: 20%; right: 15%; animation-delay: -3s; }
.crown-3 { bottom: 30%; left: 20%; animation-delay: -6s; }
.crown-4 { bottom: 15%; right: 25%; animation-delay: -9s; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -15px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-10px, -25px) rotate(180deg) scale(0.9); }
    75% { transform: translate(-20px, 10px) rotate(270deg) scale(1.05); }
}

.process-section {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 12px 40px var(--shadow-light);
}

.step-section {
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.step-section.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number-top {
    background: linear-gradient(135deg, var(--accent-orange), #D97706);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    margin-right: 1rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.step-divider {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    border-radius: 2px;
}

.step-divider-second {
    flex: 1;
    height: 3px;
    background: linear-gradient(273deg, var(--accent-orange), transparent);
    border-radius: 2px;
    margin: 3% 0 3%;
}

.region-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.region-option {
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.region-option.active {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, var(--bg-card), rgba(16, 185, 129, 0.05));
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.region-option:hover {
    transform: translateY(-8px) scale(1.02);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    min-height: 200px;
}

.server-option {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.server-option:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.server-option.active {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, var(--bg-card), rgba(16, 185, 129, 0.05));
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-content {
    flex: 1;
}

.card-title {
    font-family: 'Fredoka One', sans-serif;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.price-tag {
    color: var(--accent-green);
    font-weight: bold;
    font-family: 'Fredoka One', monospace;
    font-size: 1.1rem;
}

.amounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.amount-option {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.amount-option:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.amount-option.active {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, var(--bg-card), rgba(16, 185, 129, 0.05));
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.amount-option.popular {
    border-color: var(--accent-orange);
}

.selection-check {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 25px;
    height: 25px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.selection-card.active .selection-check,
.region-option.active .selection-check,
.server-option.active .selection-check,
.amount-option.active .selection-check {
    opacity: 1;
    transform: scale(1);
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--accent-orange), #D97706);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    animation: gentle-float 3s ease-in-out infinite;
    z-index: 2;
}

.price-section {
    text-align: center;
    margin: 2rem 0;
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}


.selection-card, .feature-card {
    background: none;
    border: 2px solid var(--border-color, #e9ecef);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    display: block;
}

.selection-card:hover, .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-blue, #0d6efd);
    text-decoration: none;
    color: inherit;
}

.selection-card.active, .feature-card.active {
    border-color: var(--primary-blue, #0d6efd);
    background: rgba(13, 110, 253, 0.1);
}

.selection-card *, .feature-card * {
    text-decoration: none !important;
}

.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.alphabet-btn {
    background: none;
    border: 2px solid var(--border-color, #dee2e6);
    color: var(--text-primary, #333);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.alphabet-btn:hover {
    border-color: var(--primary-blue, #0d6efd);
    background: rgba(13, 110, 253, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--text-primary, #333);
}

.alphabet-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.alphabet-btn.btn-all {
    background: #f8f9fa;
    border-color: #dee2e6;
    min-width: 50px;
    font-weight: 600;
}

.alphabet-btn.btn-all.active {
    background: var(--primary-blue, #0d6efd);
    border-color: var(--primary-blue, #0d6efd);
    color: white;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

html {
    scroll-behavior: smooth;
}

.order-summary {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.summary-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.summary-item {
    margin-bottom: 1rem;
}

.summary-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-total {
    border-top: 2px solid #e9ecef;
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-text {
   color: var(--text-secondary);
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 992px) and (min-width: 769px) {
    .servers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 0;
    }
    
    .region-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .servers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .amounts-grid {
        grid-template-columns: 1fr 1fr; 
        gap: 0.8rem; 
    }
    
    .amount-option {
        padding: 1rem; 
    }
    
    .card-title {
        font-size: 0.9rem; 
    }
    
    .price-tag {
        font-size: 1rem; 
    }
    
    .card-icon {
        font-size: 1.8rem; 
        margin-bottom: 0.5rem;
    }
    
    .step-number-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .alphabet-filter {
        gap: 0.2rem;
    }
    
    .alphabet-btn {
        padding: 0.4rem 0.6rem;
        min-width: 35px;
        font-size: 0.9rem;
    }
    
    .order-summary {
        padding: 1rem;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .total-price {
        font-size: 1.3rem;
    }
}


@media (max-width: 576px) {
    .amounts-grid {
        gap: 0.5rem;
    }
    
    .amount-option {
        padding: 0.8rem; 
    }
    
    .card-title {
        font-size: 0.8rem;
    }
    
    .price-tag {
        font-size: 0.9rem;
    }
    
    .card-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
}
.hero-badge-margin-top {
margin-top: 5px;
}
.hero-features-gap {
gap: 2rem;
}
.feature-icon-wrapper-60 {
width: 60px;
height: 60px;
}
.feature-icon-wrapper-orange {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--accent-orange), #D97706);
}
.feature-icon-wrapper-purple {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--accent-purple), #7C3AED);
}
.icon-font-1-5 {
font-size: 1.5rem;
color: white;
}
.servers-scrollable {
max-height: 120px;
overflow-y: auto;
line-height: 1.8;
}
.badge-font-small {
font-size: 0.75rem;
}
.info-box-blue {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
border-radius: 20px;
border: 2px solid rgba(59, 130, 246, 0.2);
}
.feature-icon-wrapper-height-60 {
height: 60px;
}
.info-box-green {
background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
border-radius: 20px;
border: 2px solid rgba(16, 185, 129, 0.2);
}
.feature-icon-wrapper-green {
height: 60px;
background: linear-gradient(135deg, var(--accent-green), #059669);
}
.feature-card-border-orange {
border-color: var(--accent-orange);
}
.feature-card-border-green {
border-color: var(--accent-green);
}
.text-align-left {
text-align: left;
}
.list-style-none {
list-style: none;
padding: 0;
}
.price-tag-orange {
color: var(--accent-orange);
}
.accordion-item-styled {
border: 2px solid var(--border-color);
border-radius: 16px;
margin-bottom: 1rem;
overflow: hidden;
}
.accordion-button-styled {
background: linear-gradient(135deg, var(--bg-card), var(--bg-accent));
border: none;
padding: 1.5rem;
font-weight: 600;
color: var(--text-primary);
}
.accordion-icon {
font-size: 1.2rem;
}
.accordion-body-styled {
padding: 1.5rem;
background: var(--bg-card);
}
.feature-icon-wrapper-50 {
width: 50px;
height: 50px;
}
.icon-white-1-2 {
color: white;
font-size: 1.2rem;
}
.feature-icon-wrapper-40 {
width: 40px;
height: 40px;
}
.feature-icon-wrapper-40-orange {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--accent-orange), #D97706);
}
.feature-icon-wrapper-40-purple {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--accent-purple), #7C3AED);
}
.icon-white-1 {
color: white;
font-size: 1rem;
}
.process-timeline-vertical {
flex-direction: column;
align-items: flex-start;
}
.process-number-small {
width: 30px;
height: 30px;
font-size: 0.9rem;
margin-right: 1rem;
}
.process-number-orange {
width: 30px;
height: 30px;
font-size: 0.9rem;
margin-right: 1rem;
background: linear-gradient(135deg, var(--accent-orange), #D97706);
}
.process-number-green {
width: 30px;
height: 30px;
font-size: 0.9rem;
margin-right: 1rem;
background: linear-gradient(135deg, var(--accent-green), #059669);
}
.feature-icon-wrapper-80 {
width: 80px;
height: 80px;
}
.icon-font-2 {
font-size: 2rem;
color: white;
}