.products-plans {
    padding: 50px 0;
}

.plans-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.plans-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.plans-header > div {
    max-width: 720px;
}

.plans-header .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mc-muted);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.plans-header .products-plans-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.plans-header p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.plans-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.pill {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--mc-border);
    background: rgba(255,255,255,0.05);
    color: var(--mc-muted);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

.pill.recommended { border-color: rgba(255,183,77,0.65); color: #ffd7a6; background: rgba(255,183,77,0.12); }
.pill.popular { border-color: rgba(124,58,237,0.6); color: #cbb0ff; }
.pill.highload { border-color: rgba(89,245,140,0.5); color: #9ef0ba; }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.plan-card {
    position: relative;
    background: var(--mc-card);
    border: 1px solid var(--mc-border);
    border-radius: 12px;
    padding: 18px;
    color: var(--mc-text);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,58,237,0.4);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.plan-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.plan-price {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.plan-price span {
    font-size: 12px;
    color: var(--mc-muted);
    font-weight: 500;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.plan-tag {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
}

.plan-tag.recommended { background: rgba(255,183,77,0.28); color: #ffe0b8; border-color: rgba(255,183,77,0.45); }
.plan-tag.popular { background: rgba(124,58,237,0.2); color: #e6d7ff; border-color: rgba(124,58,237,0.35); }
.plan-tag.highload { background: rgba(89,245,140,0.2); color: #d8ffe8; border-color: rgba(89,245,140,0.35); }
.plan-tag-floating {
    position: absolute;
    top: 12px;
    right: 12px;
}
.plan-tag-stack {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0 14px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mc-muted);
    font-size: 14px;
}

.spec i {
    color: var(--mc-accent);
    width: 18px;
    text-align: center;
}

.plan-cta {
    width: 100%;
    background: linear-gradient(90deg, #7c3aed 0%, #59f58c 100%);
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    color: #0b1221;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(89,245,140,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    background-repeat: no-repeat;
    background-clip: padding-box;
}

.plan-cta:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(124,58,237,0.35), 0 10px 25px rgba(89,245,140,0.25);
    color: #0b1221;
}

/* Anti-DDoS section */
.ddos-section {
    background: radial-gradient(circle at 10% 20%, rgba(89,245,140,0.08), transparent 25%), radial-gradient(circle at 80% 0%, rgba(124,58,237,0.12), transparent 30%), #0c1220;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ddos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: center;
}

.ddos-copy h2 {
    color: #fff;
    margin: 8px 0 10px;
}

.ddos-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    color: var(--mc-muted);
}

.ddos-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ddos-list i { color: var(--mc-accent); }

.ddos-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px;
}

.ddos-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.ddos-chart {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 12px;
    color: #fff;
}

.chart-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.ddos-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    color: var(--mc-muted);
    font-size: 12px;
}

.flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.flow-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flow-label {
    font-size: 13px;
    color: var(--mc-muted);
}

.flow-bar {
    height: 12px;
    border-radius: 999px;
}

.bar-raw {
    background: linear-gradient(90deg, rgba(255,82,82,0.9), rgba(255,166,43,0.9));
}

.bar-clean {
    background: linear-gradient(90deg, rgba(89,245,140,0.9), rgba(124,58,237,0.6));
    width: 48%;
}

@media (max-width: 576px) {
    .plan-top { flex-direction: column; align-items: flex-start; }
    .plan-cta { width: 100%; }
}

:root {
    --mc-bg: #0f172a;
    --mc-card: #111827;
    --mc-border: #1f2937;
    --mc-accent: #59f58c;
    --mc-accent-2: #7c3aed;
    --mc-text: #e5e7eb;
    --mc-muted: #9ca3af;
    --mc-gradient: radial-gradient(circle at 10% 20%, rgba(89,245,140,0.15), transparent 25%), radial-gradient(circle at 80% 0%, rgba(124,58,237,0.18), transparent 30%), linear-gradient(135deg, #0f172a 0%, #0b1221 60%, #0f172a 100%);
}

.mc-hero {
    background: var(--mc-gradient);
    border: 1px solid var(--mc-border);
    border-radius: 16px;
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.hero-left h1, .hero-left h2, .hero-left h3 {
    color: #fff;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.hero-heading .hero-title {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-heading .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c7d2fe;
    font-size: 50px;
    font-weight: 700;
}

.hero-subtitle {
    color: #cdd3e0;
    font-size: 16px;
    margin-bottom: 12px;
    max-width: 760px;
}

.badge-pill {
    background: rgba(255,255,255,0.06);
    color: var(--mc-text);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-pill.discord {
    background: linear-gradient(135deg, rgba(124,58,237,0.45), rgba(96,165,250,0.35));
    border-color: rgba(124,58,237,0.6);
    color: #f2e9ff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(124,58,237,0.35);
    font-weight: 600;
}

.badge-pill.discord:hover {
    box-shadow: 0 14px 28px rgba(124,58,237,0.5);
    transform: translateY(-1px);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-actions .btn {
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 0;
}

.hero-primary {
    background: linear-gradient(120deg, #7c3aed, #59f58c);
    border: 0;
    color: #0b1221;
    box-shadow: 0 12px 28px rgba(89,245,140,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    background-clip: padding-box;
}

.hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(124,58,237,0.28), 0 10px 24px rgba(89,245,140,0.22);
    color: #0b1221;
    filter: brightness(1.05);
}

.hero-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    filter: brightness(1.05);
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
}

.kpi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kpi-value {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.kpi-label {
    color: var(--mc-muted);
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-card {
    background: var(--mc-card);
    border: 1px solid var(--mc-border);
    border-radius: 14px;
    padding: 18px;
    color: var(--mc-text);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.hero-card-header, .hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.status-dot.online {
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34,197,94,0.15);
}

.hero-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.hero-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--mc-border);
    color: var(--mc-muted);
}

.hero-list i {
    color: var(--mc-accent);
    margin-right: 8px;
}

.hero-card-footer .price-hero {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.hero-card-footer .price-hero.is-loading {
    opacity: 0.7;
}

.section-header .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mc-muted);
    font-size: 12px;
    font-weight: 600;
}

.section-header h3 {
    color: #fff;
    font-weight: 700;
}

.ram-indicator {
    margin: 2px 0 2px;
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(89,245,140,0.2));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ram-indicator::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(124,58,237,0.35);
    border-radius: 12px 0 0 12px;
    pointer-events: none;
}

.ram-indicator-label {
    font-size: 13px;
    color: var(--mc-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ram-indicator-value {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mc-hero .eyebrow {
        font-size: 24px;
        letter-spacing: 4px;
    }
    .mc-hero .hero-title {
        font-size: 20px;
        line-height: 1.15;
    }
    .mc-hero .hero-subtitle {
        font-size: 14px;
    }
}
@media (max-width: 576px) {
    .hero-kpis { grid-template-columns: 1fr; }
}

/* Layout principal */
.minecraft-hosting-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
        "slider details"
        "middle-section details"
        "location details";
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    padding-bottom: 40px;
}

/* Secțiunea de sus cu slider */
.top-section {
    grid-area: slider;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Secțiunea din mijloc (blocul roșu) */
.middle-section {
    grid-area: middle-section;
    background-color: var(--mc-card);
    border-radius: 8px;
    padding: 20px;
    margin-top: -20px; /* reducă distanța față de slider */
}

/* Secțiunea din dreapta */
.right-section {
    grid-area: details;
    align-self: start;
}

/* Stilizare pentru titlul secțiunii de moduri */
.game-mode-title {
    font-size: 22px; /* Redus de la 24px */
    font-weight: 600;
    margin-bottom: 5px; /* Redus de la 10px */
}

.selected-game-mode {
    font-size: 13px; /* Redus de la 14px */
    color: #7289da;
    margin-bottom: 10px; /* Adăugat margin-bottom */
}

/* Stilizare pentru grila de moduri */
.game-modes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 coloane în loc de 3 */
    gap: 10px; /* Spațiu mai mic între carduri */
}

.slider-container {
    width: 100%;
    padding-bottom: 16px;
    padding-top: 14px;
    margin-top: 8px;
}

/* Stilizare pentru bara de progres */
.ram-progress {
    position: absolute;
    top: 22px;
    left: 0;
    height: 6px;
    background: linear-gradient(to right, #5865F2, #59f58c);
    border-radius: 3px;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 5px rgba(88, 101, 242, 0.7);
    transition: width 0.3s ease-out;
}

/* Stilizare etichetă "Recomandat" */
.recommended-tag {
    position: absolute;
    top: -18px;
    transform: translateX(-50%);
    background-color: #43B581;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.recommended-tag:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #43B581;
}

.vanilla-tag { background-color: #8BC34A; } /* Verde deschis - iarbă */
.vanilla-tag:after { border-top-color: #8BC34A; }

.smp-tag { background-color: #4CAF50; } /* Verde mai intens - pădure */
.smp-tag:after { border-top-color: #4CAF50; }

.recommended-tag { background-color: #3F51B5; } /* Albastru - diamant */
.recommended-tag:after { border-top-color: #3F51B5; }

.modpack-tag { background-color: #673AB7; } /* Mov - obsidian/nether */
.modpack-tag:after { border-top-color: #673AB7; }

.community-tag { background-color: #FF9800; } /* Portocaliu - magmă */
.community-tag:after { border-top-color: #FF9800; }

.pvp-tag { background-color: #F44336; } /* Roșu - redstone */
.pvp-tag:after { border-top-color: #F44336; }

.extreme-tag { background-color: #607D8B; } /* Gri-albăstrui - bedrock */
.extreme-tag:after { border-top-color: #607D8B; }

#ramSlider {
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #2c2f33;
    outline: none;
    opacity: 0.7;
    -webkit-appearance: none;
    transition: opacity .2s;
    position: relative;
    z-index: 3;
}

/* Stilizare pentru track-ul slider-ului */
#ramSlider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    background: #444;
}
#ramSlider::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #444;
}

/* Stilizare pentru bila slider-ului */
#ramSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #7289da;
    cursor: pointer;
    z-index: 5;
    margin-top: -10px;
    box-shadow: 0 0 8px rgba(114, 137, 218, 0.8);
}
#ramSlider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #7289da;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 0 8px rgba(114, 137, 218, 0.8);
}

/* Stilizare pentru tick-uri */
.slider-ticks {
    position: relative;
    height: 10px;
    margin-top: -15px;
    z-index: 1;
}

.tick {
    position: absolute;
    width: 2px;
    height: 8px;
    background-color: #dc3545;
    transform: translateX(-50%);
}

/* Stilizare pentru etichete */
.slider-labels {
    position: relative;
    height: 20px;
    margin-top: 10px;
}

.label {
    position: absolute;
    transform: translateX(-50%);
    font-size: 14px;
}

.ram-descriptions {
    margin: -2px 0 4px;
}

/* Stilizare pentru carduri de moduri */
.edition-card {
    background-color: #131a2a;
    border-radius: 6px;
    padding: 10px 8px; /* Padding mai mic */
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--mc-border);
    position: relative;
    overflow: visible;
    z-index: 1;
}


.edition-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.edition-card.selected {
    border-color: #7289da;
    background-color: #161f31;
    box-shadow: 0 0 10px rgba(114, 137, 218, 0.5);
}

.edition-card.dropdown-open {
    z-index: 60;
}

.edition-icon {
    font-size: 18px; /* Redus de la 22px */
    margin-bottom: 6px; /* Redus de la 8px */
    color: #7289da;
}

.edition-card h4 {
    font-size: 13px; /* Redus de la 14px */
    font-weight: 600;
    margin-bottom: 3px; /* Redus de la 4px */
}


.edition-desc {
    font-size: 9px; /* Redus de la 11px */
    color: var(--mc-muted);
    margin-bottom: 0;
    height: 24px; /* Redus înălțimea pentru descriere */
    overflow: hidden;
}

/* Styling for Minecraft package display */
.package-container {
    background-color: var(--mc-card);
    border-radius: 8px;
    padding: 25px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--mc-border);
    margin-bottom: 32px;
}

.package-container.active {
    border: 1px solid #7289da;
    box-shadow: 0 0 15px rgba(114, 137, 218, 0.4);
}

.package-title {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
}

.package-divider {
    border-top: 1px solid #3e4147;
    margin: 15px 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.package-features li {
    margin-bottom: 12px;
    font-size: 15px;
}

.package-features i {
    width: 20px;
    margin-right: 10px;
    color: #7289da;
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.price {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.order-btn {
    background: linear-gradient(135deg, #7c3aed, #59f58c);
    border: 0;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #0b1221;
    box-shadow: 0 12px 30px rgba(89,245,140,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    background-clip: padding-box;
}

.order-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(124,58,237,0.35), 0 10px 25px rgba(89,245,140,0.25);
}

/* Responsive design */
@media (max-width: 992px) {
    .minecraft-hosting-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "slider"
            "middle-section"
            "location"
            "details";
        gap: 20px;
    }
    
    .middle-section {
        margin-top: 0;
    }
    
    .right-section {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .game-modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slider-container { padding-bottom: 18px; padding-top: 10px; margin-top: -2px; }
    .label { font-size: 12px; }
    /* arată doar etichetele cheie pe mobil pentru a evita două rânduri */
    .slider-labels .label:nth-child(2),
    .slider-labels .label:nth-child(4),
    .slider-labels .label:nth-child(6),
    .slider-labels .label:nth-child(8),
    .slider-labels .label:nth-child(9) { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-badges { gap: 6px; }
    .hero-card { padding: 14px; }
    .minecraft-hosting-container { padding: 0 4px; }
    .ram-descriptions { font-size: 14px; margin: 0 0 4px; }
    .locations-grid { flex-direction: column; }
    .location { width: 100%; align-items: flex-start; }
    .price-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .price-container .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .minecraft-hosting-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "slider"
            "middle-section"
            "location"
            "details";
    }
    .right-section {
        position: static !important;
        top: auto !important;
        max-width: 100%;
        width: 100%;
    }
    .slider-labels {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        row-gap: 6px;
        height: auto;
        margin-top: 12px;
    }
    .slider-labels .label {
        position: static;
        transform: none;
        text-align: center;
    }
    .slider-ticks { display: none; }
    .recommended-tag { display: none; }
}

/* Stilizare compactă pentru opțiunile extra */
.extra-options {
  margin-top: 20px;
  margin-bottom: 20px;
}

.extra-option-card {
  background-color: var(--mc-card);
  border-radius: 8px;
  padding: 15px;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  height: 100%;
  border: 1px solid var(--mc-border);
}

.option-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.option-icon {
  color: #7289da;
  margin-right: 10px;
  font-size: 16px;
}

.extra-option-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.option-description {
  color: #b9bbbe;
  font-size: 12px;
  margin-bottom: 8px;
  min-height: 36px;
}

.price-tag {
  font-weight: 500;
  color: #7289da;
  font-size: 14px;
}

/* Toggle Switch pentru IP dedicat - versiune simplificată */
.custom-toggle {
  display: flex;
  align-items: center;
}

.toggle-checkbox {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

.toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 44px;
  height: 24px;
  background: #2c2f33;
  border-radius: 24px;
  position: relative;
  transition: background-color 0.2s;
  margin-right: 10px;
}

.toggle-label .toggle-inner {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: 0.3s;
}

.toggle-checkbox:checked + .toggle-label {
  background: #7289da;
}

.toggle-checkbox:checked + .toggle-label .toggle-inner {
  left: calc(100% - 3px);
  transform: translateX(-100%);
}

.toggle-status {
  font-size: 13px;
  color: #999;
}

.toggle-checkbox:checked ~ .toggle-status {
  color: #7289da;
}

/* Stilizarea select-ului */
.form-select {
  background-color: #131a2a;
  color: white;
  border-color: var(--mc-border);
  cursor: pointer;
  font-size: 14px;
  padding: 8px 12px;
  height: auto;
}

.form-select:focus {
  background-color: #2c2f33;
  color: white;
  border-color: #7289da;
  box-shadow: 0 0 0 0.25rem rgba(114, 137, 218, 0.25);
}

.form-select option {
  background-color: #2c2f33;
  color: white;
}

.server-locations {
  grid-area: location;
  background: rgba(255,255,255,0.03);
  padding: 12px;
  border-radius: 10px;
  color: #eee;
  margin-top:10px;
  margin-bottom:14px;
  font-size:14px;
}
.locations-grid {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:8px;
}
.location {
  min-width:120px;
  padding:8px;
  border-radius:8px;
  background: rgba(0,0,0,0.25);
  text-align:center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset;
}
.location img { width:28px; height:18px; display:block; margin:0 auto 6px; }
.location .loc-name { font-weight:600; margin-bottom:4px; }
.location .ping { color:#bdbdbd; font-size:13px; }
.location.active { border:1px solid rgba(76,175,80,0.6); }
.location.coming-soon { opacity:0.55; filter:grayscale(0.3); }
.ping-note { color:#bfc7c9; font-size:12px; }


.locations-grid .fi {
  font-size: 24px;       /* mărimea steagului */
  margin-bottom: 6px;
  border-radius: 3px;    /* colțuri rotunjite */
  box-shadow: 0 0 2px rgba(0,0,0,0.4);
}
.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.right-section {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;  /* înălțimea header-ului tău */
  z-index: 10;
}

@media (max-width: 992px) {
  .right-section {
    position: static;
    top: auto;
    z-index: auto;
  }
}

.version-dropdown{position:relative;margin-top:10px}
.version-selected{
  background:#2a2f3a;border:1px solid #3b4252;color:#e6edf3;
  padding:8px 12px;border-radius:8px;cursor:pointer;user-select:none;
  display:flex;align-items:center;justify-content:space-between
}
.version-options{
  position:absolute;top:calc(100% + 6px);left:0;right:0;
  background:#1e222c;border:1px solid #3b4252;border-radius:8px;
  max-height:220px;overflow:auto;display:none;z-index:5000;
  box-shadow:0 10px 30px rgba(0,0,0,.35)
}
.version-option{padding:8px 12px;cursor:pointer}
.version-option:hover{background:#2b303b}
