/* Zmienne globalne */
:root {
    --primary-color: #3b82f6; /* Jasny niebieski - główny kolor marki */
    --primary-dark: #1d4ed8;  /* Ciemniejszy niebieski dla gradientów */
    --accent-color: #8b5cf6;  /* Fioletowy akcent */
    --bg-main: #020617;       /* Najciemniejsze tło (prawie czarny) */
    --bg-secondary: #0f172a;  /* Tło kart */
    --text-color: #f1f5f9;    /* Biały tekst */
    --text-muted: #94a3b8;    /* Szary tekst */
    --font-main: 'Inter', sans-serif;
    --border-radius: 12px;
    --section-spacing: 100px;
}

/* Reset CSS i ustawienia podstawowe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Płynne przewijanie do kotwic */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Zapobiega poziomemu paskowi przewijania */
    display: flex;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
}

.configurator-section {
    flex: 1; /* To sprawia, że ta sekcja wypełni pustą przestrzeń */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}


/* --- Utility Classes & Animations --- */
.highlight {
    color: var(--primary-color);
}

.gradient-text {
    background: linear-gradient(
        45deg, 
        #3b82f6, 
        #8b5cf6, 
        #3b82f6
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 10px; /* Rozwiązuje problem ucinania litery 'g' */
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Animacja pływania (dla ikon) */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

/* Klasy dla Scroll Reveal (JavaScript) */
.hidden {
    opacity: 0;
    transform: translateY(30px); /* Elementy startują 30px niżej */
    transition: all 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animacja wejścia Hero */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efekt świecenia przycisku */
.glow-effect:hover {
    box-shadow: 0 0 20px var(--primary-color) !important;
}

/* --- Przyciski --- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    margin-left: 10px;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.1);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(2, 6, 23, 0.85); /* Półprzezroczyste tło */
    backdrop-filter: blur(12px); /* Efekt rozmycia tła pod menu */
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

/* Klasa dodawana przez JS gdy scrollujemy w dół */
.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(2, 6, 23, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

/* Animacja podkreślenia linków w menu */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-login {
    background-color: rgba(255,255,255,0.05);
    padding: 8px 24px !important;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: white !important;
}
.btn-login::after { display: none; } /* Usuwamy podkreślenie z przycisku */

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* --- Hero Section z Wideo --- */
.hero {
    height: 93vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Stylizacja wideo w tle */
.back-video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    object-fit: cover; /* Ważne: zapewnia pokrycie całego tła bez deformacji */
}


/* 2. PŁYNNE PRZEJŚCIE W DÓŁ (Zlewanie się z tłem) */
.video-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px; /* Wysokość przejścia - możesz zwiększyć dla dłuższego efektu */
    background: linear-gradient(
        to bottom, 
        rgba(2, 6, 23, 0) 0%,   /* Całkowicie przezroczysty na górze */
        #010410 100%             /* Kolor Twojej kolejnej sekcji na dole */
    );
    z-index: -1;
}

/* Przyciemnienie wideo, żeby tekst był czytelny */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.9));
    z-index: -1;
}

.mini-hero .video-overlay {
    background: rgba(0, 0, 0, 0);
}


.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--bg-secondary);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-item i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* --- Sections General --- */
.section {
    padding: var(--section-spacing) 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bg-darker {
    background-color: rgba(0,0,0,0.3);
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

/* Efekt "gradient border" przy hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Karty tej samej wysokości */
}

.pricing-card {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.15) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.card-header {
    text-align: center;
    margin-bottom: 35px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
}

.price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features-list {
    margin-bottom: auto; /* Wypycha przycisk na dół */
}

.features-list li {
    margin-bottom: 18px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.features-list li strong {
    color: var(--text-color);
    margin-left: 4px;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.btn-outline {
    display: block;
    text-align: center;
    border: 1px solid var(--text-muted);
    color: var(--text-color);
    border-radius: var(--border-radius);
    padding: 14px;
    margin-top: 30px;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.1);
}

.pricing-card .btn-primary {
    display: block;
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

/* --- Roadmap Section --- */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.roadmap-item i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-right: 25px;
    margin-top: 5px;
}

.roadmap-info h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.roadmap-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.roadmap-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.roadmap-info .status {
    margin-top: auto;
    display: inline-block;
    align-self: flex-start;
}

.status {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status.coming-soon {
    background-color: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.status.planning {
    background-color: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* --- Footer --- */
footer {
    background-color: #01040f;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-col p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Responsywność (Tablety i Telefony) --- */
@media (max-width: 968px) {
    .hero-content h1 { font-size: 3.5rem; }
    .pricing-card.popular { transform: scale(1); z-index: 0; }
}

@media (max-width: 768px) {
    /* Menu Mobilne */
    .nav-links {
        position: fixed;
        right: -100%; /* Ukryte poza ekranem */
        top: 70px; /* Wysokość navbaru */
        height: calc(100vh - 70px);
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transition: 0.4s ease-in-out;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Klasa dodawana przez JS żeby pokazać menu */
    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }
    
    .hamburger {
        display: block; /* Pokaż hamburgera */
    }

    /* Reszta responsywności */
    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons .btn { display: block; width: 100%; margin: 10px 0 0 0; }
    .section-title { font-size: 2.2rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-col p { margin: 0 auto; }
    .roadmap-grid { grid-template-columns: 1fr; }
}

/* --- STYLE DLA PODSTRONY MINECRAFT (Dodaj na koniec style.css) --- */

/* Tło i nagłówek */
.mini-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(15, 23, 42, 0.9));
    background-size: cover;
    background-position: center;
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 4px solid #4a822f; /* Minecraft Green border */

    position: relative;

}

.mc-text {
    color: #5bc236; /* Minecraftowy zielony */
    text-shadow: 2px 2px 0px #2a4a18;
}

/* Układ konfiguratora */
.config-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-top: 40px;
}

/* Karty opcji */
.mc-card {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: 8px; /* Mniejsze zaokrąglenie, bardziej "kwadratowe" */
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.mc-card h3 {
    margin-bottom: 20px;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

/* Wybór CPU (Radio Cards) */
.cpu-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cpu-option input {
    display: none;
}

/* Styl dla zablokowanej opcji */
.cpu-option input[disabled] + .cpu-box {
    filter: grayscale(1);      /* Robi boks czarno-białym */
    opacity: 0.5;              /* Zmniejsza widoczność */
    cursor: not-allowed;       /* Zmienia kursor na "zakaz" */
    border: 1px solid #333;    /* Przygaszona krawędź */
    pointer-events: none;      /* Całkowicie blokuje interakcję myszy */
}

/* Opcjonalnie: usunięcie efektu hover dla zablokowanych elementów */
.cpu-option input[disabled] + .cpu-box:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

.cpu-box {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
}

.cpu-box i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--text-muted);
}

.cpu-box h4 { font-size: 1rem; margin-bottom: 3px; }
.cpu-desc { font-size: 0.8rem; color: var(--text-muted); }

/* Aktywny CPU */
.cpu-option input:checked + .cpu-box {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}
.cpu-option input:checked + .cpu-box i { color: var(--primary-color); }

/* Premium CPU Style */
.cpu-box.premium i { color: #f59e0b; }
.cpu-option input:checked + .cpu-box.premium {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.badge-mini {
    position: absolute;
    top: 0; right: 0;
    background: #f59e0b;
    color: black;
    font-size: 0.6rem;
    padding: 2px 8px;
    font-weight: bold;
    border-bottom-left-radius: 8px;
}

/* Suwak RAM (Custom Range) */
.range-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mc-range {
    width: 100%;
    height: 10px;
    background: #1e293b;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.mc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border: 3px solid white;
    cursor: pointer;
    border-radius: 4px; /* Kwadratowy uchwyt */
    transition: 0.2s;
}

.mc-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-value {
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 80px;
    text-align: right;
    color: var(--primary-color);
}

.hint { margin-top: 15px; font-size: 0.9rem; color: var(--text-muted); }

/* Dropdowny */
.select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.select-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.select-box select {
    width: 100%;
    padding: 12px;
    background: #020617;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 6px;
    outline: none;
}

.select-box select:focus {
    border-color: var(--primary-color);
}

/* Karta Podsumowania (Sticky) */
.config-summary {
    position: relative;
}

.summary-card {
    position: sticky;
    top: 100px; /* Przykleja się przy scrollowaniu */
    background: #111827;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Efekt bloku trawy na górze karty */
.mc-card-grass {
    border-top: 6px solid #5bc236; /* Zielony pasek trawy */
    border-bottom: 6px solid #795548; /* Brązowy pasek ziemi (opcjonalny) */
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.total-price {
    text-align: center;
    margin: 20px 0;
}

.total-price h2 {
    font-size: 2.5rem;
    color: #5bc236;
}

.mc-btn {
    width: 100%;
    background: #4a822f; /* Ciemniejszy zielony */
    border-radius: 4px; /* Bardziej kwadratowy przycisk */
}
.mc-btn:hover {
    background: #5bc236;
    transform: none; /* Bez podskakiwania, tylko kolor */
}

.security-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* RWD dla konfiguratora */
@media (max-width: 900px) {
    .config-container { grid-template-columns: 1fr; }
    .select-grid { grid-template-columns: 1fr; }
}


/* --- Kontakt & Discord --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.btn-discord {
    display: inline-block;
    background-color: #5865F2;
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: bold;
    margin: 20px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    color: white;
    outline: none;
}

/* --- FAQ --- */
.faq-item {
    background: var(--bg-secondary);
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    display: none; /* Rozwijane przez JS */
}

.faq-item.active .faq-answer { display: block; }

/* --- Tech Cards --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.tech-card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: var(--border-radius);
    border-bottom: 3px solid var(--primary-color);
}

.tech-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; }

/* --- VPS Page Styles --- */
.vps-hero {
    background: linear-gradient(rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.95)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc48?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
}

.vps-table-container {
    overflow-x: auto; /* Przewijanie na telefonach */
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.vps-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.vps-table th {
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vps-table td {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.pkg-name { font-weight: 800; font-size: 1.1rem; }
.pkg-price { font-weight: 800; color: var(--primary-color); font-size: 1.3rem; }

.featured-row {
    background: rgba(59, 130, 246, 0.05);
}

.badge-vps {
    background: var(--primary-color);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.vps-features-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vps-feat {
    text-align: center;
    padding: 20px;
}

.vps-feat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}


/* --- RUST PAGE STYLES --- */
.rust-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(15, 23, 42, 0.9)); /* Możesz podmienić na screenshot z gry */
    background-size: cover;
    border-bottom: 4px solid #e67e22;
}

.rust-accent {
    color: #e67e22;
    text-shadow: 0 0 10px rgba(230, 126, 34, 0.3);
}

.rust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rust-feat-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.rust-feat-item i {
    font-size: 2rem;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 15px;
    border-radius: 12px;
    height: fit-content;
}

.rust-feat-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rust-feat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.rust-plan-card {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.rust-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e67e22;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 5px;
}

.rust-btn {
    background: #e67e22;
    border: none;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.rust-btn:hover {
    background: #d35400;
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.4);
}

/* RWD dla Rusta */
@media (max-width: 850px) {
    .rust-grid { grid-template-columns: 1fr; }
}


.price-start {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.price-start span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
}

.pricing-card i {
    margin-bottom: 15px;
}

/* Styl dla aktywnego linku w nawigacji */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 800;
}


/* --- DASHBOARD STYLES --- */
.dashboard-body {
    display: flex;
    min-height: 100vh;
    background-color: #0b0f1a;
}

.sidebar {
    width: 260px;
    background-color: #0f172a;
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    position: fixed;
    height: 100%;
}

.sidebar-logo {
    padding: 0 30px 40px;
    font-size: 1.5rem;
    font-weight: 800;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    color: var(--text-muted);
    gap: 15px;
    transition: 0.2s;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.dashboard-content {
    flex: 1;
    margin-left: 260px;
    padding: 40px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.online { background-color: #10b981; box-shadow: 0 0 10px #10b981; }

.btn-action {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 10px;
    color: white;
}

.start { background: #10b981; }
.restart { background: #f59e0b; }
.stop { background: #ef4444; }

/* Stats & Progress */
.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon { font-size: 1.5rem; color: var(--primary-color); }

.progress-bar {
    width: 100%;
    height: 8px;
    background: #334155;
    border-radius: 10px;
    margin: 5px 0;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Console */
.console-container {
    background: #000;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

.console-header {
    background: #1e293b;
    padding: 10px 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.console-output {
    height: 300px;
    padding: 20px;
    overflow-y: auto;
    font-size: 0.9rem;
    color: #d1d5db;
}

.text-success { color: #10b981; }

.console-input-area {
    display: flex;
    padding: 10px 20px;
    background: #111;
    border-top: 1px solid #334155;
}

.console-input-area input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    margin-left: 10px;
    outline: none;
}

.status-indicator.offline {
    background-color: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

/* Płynne przejście słupków statystyk */
.progress {
    transition: width 1.5s ease-in-out;
}

/* Styl dla komend wpisywanych przez użytkownika */
.user-cmd {
    color: #3b82f6;
    font-weight: bold;
}

.file-list {
    background: #0f172a;
    padding: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
    cursor: pointer;
}

.file-item:hover {
    background: rgba(255,255,255,0.05);
}

.file-item i {
    margin-right: 15px;
    color: var(--primary-color);
}

.file-item span {
    flex: 1;
    font-size: 0.9rem;
}

.file-item small {
    color: var(--text-muted);
}