/* =========================================
   ZMIENNE KOLORYSTYCZNE I BAZA
   ========================================= */
:root {
    --bg-white: #ffffff;
    --bg-light: #f4f6fb; 
    
    --purple-dark: #2a0a4a;   
    --purple-main: #7c3aed;   
    --purple-light: #c4b5fd;  
    --purple-glow: rgba(124, 58, 237, 0.4);
    
    --text-main: #1e1b4b;
    --text-muted: #6b7280;
    
    --border-radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   TŁO (MESH GRADIENT)
   ========================================= */
.light-mesh-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; background-color: var(--bg-light); overflow: hidden;
}

.grid-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; z-index: 1;
}

.bg-shape {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.6;
    animation: float-bg 20s infinite alternate ease-in-out;
}

.shape-purple { width: 600px; height: 600px; background: #d8b4fe; top: -10%; left: -10%; }
.shape-magenta { width: 500px; height: 500px; background: #e9d5ff; bottom: 10%; right: -5%; animation-delay: -5s; }
.shape-light { width: 400px; height: 400px; background: #c4b5fd; top: 40%; left: 30%; animation-delay: -10s; }

@keyframes float-bg {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 50px) scale(1.1); }
}

/* =========================================
   NAWIGACJA
   ========================================= */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; max-width: 1400px; margin: 0 auto;
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px);
    border-radius: 0 0 24px 24px; border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    position: sticky; top: 0; z-index: 100;
}
.logo { font-size: 26px; font-weight: 900; color: var(--purple-dark); letter-spacing: -1px; }
.logo span { color: var(--purple-main); }

.nav-links { display: flex; gap: 35px; list-style: none; font-weight: 600; font-size: 15px; }
.nav-links a { color: var(--text-muted); transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple-main); }

.btn-nav {
    background: var(--purple-main); color: white; padding: 12px 28px;
    border-radius: 12px; font-weight: 700; font-size: 14px; transition: 0.3s;
    box-shadow: 0 10px 20px var(--purple-glow);
}
.btn-nav:hover { background: var(--purple-dark); transform: translateY(-2px); }

.active-nav-btn {
    background: var(--purple-dark) !important;
    box-shadow: none !important; border: 2px solid var(--purple-dark);
}

/* =========================================
   HERO BANNER (GŁÓWNA STRONA)
   ========================================= */
.hero {
    max-width: 1300px; margin: 60px auto 100px; padding: 0 5%;
    display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.hero-content { flex: 1; max-width: 600px; }
.server-status {
    display: inline-flex; align-items: center; gap: 10px;
    background: white; padding: 10px 20px; border-radius: 50px;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.05); border: 1px solid rgba(124, 58, 237, 0.1);
    font-size: 13px; color: var(--purple-main); font-weight: 600; margin-bottom: 30px;
}
.status-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; box-shadow: 0 0 10px #10b981; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

.hero-content h1 { font-size: 4.5rem; font-weight: 900; line-height: 1.05; margin-bottom: 20px; letter-spacing: -2px; color: var(--purple-dark); }
.text-gradient { background: linear-gradient(135deg, var(--purple-main) 0%, #d946ef 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; }

.hero-actions { display: flex; gap: 15px; }
.btn-primary {
    background: linear-gradient(135deg, var(--purple-main) 0%, #6d28d9 100%);
    color: white; border: none; padding: 16px 32px; border-radius: 14px;
    font-size: 16px; font-weight: 800; font-family: inherit; cursor: pointer;
    box-shadow: 0 15px 30px var(--purple-glow); transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px var(--purple-glow); }

.btn-secondary {
    background: white; color: var(--purple-main); padding: 16px 32px;
    border-radius: 14px; font-weight: 800; font-size: 16px; border: 2px solid rgba(124, 58, 237, 0.2);
    transition: 0.3s; display: inline-flex; align-items: center;
}
.btn-secondary:hover { background: var(--purple-light); border-color: var(--purple-main); color: var(--purple-dark); }

.hero-visual { flex: 1; display: flex; justify-content: flex-end; }
.floating-img { height: 450px; filter: drop-shadow(0 30px 40px rgba(124, 58, 237, 0.2)); animation: float-img 6s ease-in-out infinite; }
@keyframes float-img { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* =========================================
   NAGŁÓWKI SEKCJI
   ========================================= */
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.badge { display: inline-block; background: rgba(124, 58, 237, 0.1); color: var(--purple-main); padding: 6px 16px; border-radius: 50px; font-weight: 800; font-size: 13px; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.section-header h2 { font-size: 3rem; font-weight: 900; color: var(--purple-dark); letter-spacing: -1px; }

/* =========================================
   ZALETY (INDEX)
   ========================================= */
.features { margin-bottom: 120px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px);
    padding: 40px; border-radius: var(--border-radius);
    border: 1px solid rgba(124, 58, 237, 0.1); box-shadow: 0 20px 40px rgba(124, 58, 237, 0.05); transition: 0.3s;
}
.feature-card:hover { transform: translateY(-5px); background: white; border-color: rgba(124, 58, 237, 0.3); }
.icon-box { font-size: 40px; margin-bottom: 20px; background: rgba(124, 58, 237, 0.1); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 20px; }
.feature-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; color: var(--purple-dark); }
.feature-card p { color: var(--text-muted); font-size: 1rem; }

/* =========================================
   TRYBY (INDEX - 1 KARTA WYŚRODKOWANA)
   ========================================= */
.modes { margin-bottom: 120px; }
.modes-grid { 
    display: flex; 
    justify-content: center; 
    width: 100%;
}
.mode-card {
    background: white; padding: 60px 40px 40px; border-radius: var(--border-radius);
    border: 1px solid rgba(124, 58, 237, 0.1); box-shadow: 0 20px 40px rgba(124, 58, 237, 0.05);
    display: flex; flex-direction: column; transition: 0.3s; position: relative; 
    width: 100%; max-width: 450px; text-align: center;
}
.mode-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(124, 58, 237, 0.15); }

.mode-icon { position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 100px; height: 100px; image-rendering: pixelated; filter: drop-shadow(0 15px 20px rgba(124, 58, 237, 0.25)); transition: 0.3s; }
.mode-card:hover .mode-icon { transform: translateX(-50%) scale(1.1); }

.mode-tag { color: var(--purple-main); font-weight: 800; font-size: 13px; text-transform: uppercase; margin-bottom: 10px; display: block; margin-top: 40px; }
.mode-card h3 { font-size: 2.2rem; font-weight: 900; margin-bottom: 15px; color: var(--purple-dark); }
.mode-card p { color: var(--text-muted); margin-bottom: 30px; flex-grow: 1; }

.btn-mode { display: block; text-align: center; background: var(--bg-light); color: var(--purple-dark); padding: 16px; border-radius: 12px; font-weight: 800; transition: 0.3s; }
.premium-card { background: linear-gradient(135deg, #ffffff 0%, #f3ebff 100%); border: 2px solid var(--purple-main); }
.premium-btn { background: var(--purple-main); color: white; box-shadow: 0 10px 20px var(--purple-glow); }
.premium-btn:hover { background: var(--purple-dark); color: white; transform: translateY(-2px); }

/* =========================================
   SKLEP (SKLEP.HTML - SIATKA KART)
   ========================================= */
.shop-container { margin-top: 60px; margin-bottom: 120px; }
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px; /* Duży odstęp z góry na wystające ikonki */
    margin-top: 80px;
}

.shop-card {
    background: white; border-radius: var(--border-radius);
    padding: 60px 30px 35px; position: relative; text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.1); box-shadow: 0 15px 35px rgba(124, 58, 237, 0.05);
    transition: 0.3s; display: flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(124, 58, 237, 0.12); border-color: rgba(124, 58, 237, 0.3); }

.shop-icon {
    position: absolute; top: -45px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 90px; image-rendering: pixelated;
    filter: drop-shadow(0 15px 20px rgba(124, 58, 237, 0.25)); transition: 0.3s;
}
.shop-card:hover .shop-icon { transform: translateX(-50%) scale(1.15); }

.shop-price { color: var(--purple-main); font-weight: 900; font-size: 14px; text-transform: uppercase; margin-bottom: 10px; display: block; letter-spacing: 1px; }
.shop-card h3 { font-size: 1.8rem; font-weight: 900; color: var(--purple-dark); margin-bottom: 15px; }
.shop-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 30px; flex-grow: 1; }

.btn-shop {
    display: block; width: 100%; padding: 14px; border-radius: 12px;
    font-weight: 800; font-size: 15px; border: 2px solid rgba(124, 58, 237, 0.2);
    color: var(--purple-main); background: transparent; transition: 0.3s;
}
.btn-shop:hover { background: var(--purple-main); color: white; border-color: var(--purple-main); box-shadow: 0 10px 20px var(--purple-glow); }

.shop-premium { transform: scale(1.05); z-index: 2; border: 2px solid var(--purple-main); background: linear-gradient(135deg, #ffffff 0%, #f3ebff 100%);}
.shop-premium:hover { transform: scale(1.07) translateY(-5px); }
.shop-premium .btn-shop { background: var(--purple-main); color: white; border: none; }
.shop-premium .btn-shop:hover { background: var(--purple-dark); }

.popular-tag {
    position: absolute; top: -15px; right: 20px; background: var(--purple-main); color: white;
    padding: 6px 16px; border-radius: 50px; font-size: 11px; font-weight: 900; letter-spacing: 1px; box-shadow: 0 5px 15px var(--purple-glow); z-index: 3;
}

/* =========================================
   DISCORD BANNER
   ========================================= */
.discord-cta { margin-bottom: 80px; }
.discord-container {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-main) 100%);
    border-radius: var(--border-radius); padding: 60px;
    display: flex; justify-content: space-between; align-items: center; color: white;
    box-shadow: 0 30px 60px rgba(42, 10, 74, 0.3); position: relative; overflow: hidden;
}
.discord-container::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.1); border-radius: 50%; filter: blur(50px); }
.discord-content { max-width: 500px; position: relative; z-index: 2; }
.discord-content h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 15px; line-height: 1.1; }
.discord-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }
.btn-discord { background: white; color: var(--purple-main); padding: 16px 32px; border-radius: 14px; font-weight: 800; font-size: 16px; display: inline-block; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-discord:hover { transform: scale(1.05); }
.discord-graphics img { height: 300px; margin-bottom: -100px; position: relative; z-index: 2; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4)); }

/* =========================================
   STOPKA I MODALE
   ========================================= */
footer { padding: 40px 0; border-top: 1px solid rgba(124, 58, 237, 0.1); background: white; text-align: center; }
.footer-logo { font-size: 24px; font-weight: 900; color: var(--purple-dark); margin-bottom: 10px; }
.footer-logo span { color: var(--purple-main); }
footer p { color: var(--text-main); font-weight: 600; font-size: 15px; }
.mojang-disclaimer { color: var(--text-muted); font-size: 13px; font-weight: 400; margin-top: 5px; }

.legal-links { margin-top: 20px; display: flex; justify-content: center; gap: 30px; }
.legal-links a { color: var(--purple-main); font-size: 13px; font-weight: 700; text-transform: uppercase; transition: 0.3s; opacity: 0.8; }
.legal-links a:hover { opacity: 1; color: var(--purple-dark); }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(12, 4, 25, 0.6); backdrop-filter: blur(8px); z-index: 1000; display: flex; justify-content: center; align-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s ease-in-out; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: white; width: 100%; max-width: 700px; max-height: 85vh; border-radius: 24px; display: flex; flex-direction: column; box-shadow: 0 40px 80px rgba(42, 10, 74, 0.3); transform: scale(0.95); transition: transform 0.3s; border: 1px solid rgba(124, 58, 237, 0.1); }
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-header { padding: 25px 30px; border-bottom: 1px solid rgba(124, 58, 237, 0.1); display: flex; justify-content: space-between; align-items: center; background: #fcfbfe; border-radius: 24px 24px 0 0; }
.modal-header h2 { font-size: 1.5rem; font-weight: 900; color: var(--purple-dark); margin: 0; }
.close-btn { background: transparent; border: none; font-size: 28px; color: #a1a1aa; cursor: pointer; transition: 0.3s; line-height: 1; }
.close-btn:hover { color: var(--purple-main); transform: rotate(90deg); }
.modal-body { padding: 30px; overflow-y: auto; color: var(--text-muted); }

.custom-scroll::-webkit-scrollbar { width: 6px; }
.custom-scroll::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.custom-scroll::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 10px; }

.modal-section { margin-bottom: 25px; }
.modal-section h3 { font-size: 1.1rem; color: var(--purple-main); font-weight: 800; margin-bottom: 10px; }
.modal-section p, .modal-section ul { font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }
.modal-section ul { padding-left: 20px; list-style-type: disc; }
.modal-section strong { color: var(--purple-dark); }
.modal-footer { padding: 20px 30px; border-top: 1px solid rgba(124, 58, 237, 0.1); background: #fcfbfe; border-radius: 0 0 24px 24px; display: flex; justify-content: flex-end; }
.btn-modal-close { background: var(--purple-main); color: white; border: none; padding: 12px 24px; border-radius: 12px; font-weight: 800; font-size: 0.95rem; cursor: pointer; transition: 0.3s; }
.btn-modal-close:hover { background: var(--purple-dark); transform: translateY(-2px); }

/* =========================================
   RESPONSYWNOŚĆ
   ========================================= */
@media (max-width: 950px) {
    .hero, .discord-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-content h1 { font-size: 3.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 20px; }
    .shop-premium { transform: scale(1); }
    .shop-premium:hover { transform: translateY(-8px); }
    .discord-graphics { display: none; }
}
@media (max-width: 650px) {
    .features-grid, .shop-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .mode-card { max-width: 100%; }
}
/* =========================================
   PODSTRONA VOUCHER (voucher.html)
   ========================================= */

.voucher-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    margin-top: 40px;
    padding-bottom: 100px;
}

.voucher-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 60px 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(255, 255, 255, 1);
    width: 100%;
    max-width: 480px;
    text-align: center;
    position: relative;
}

.player-preview {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.head-wrapper {
    position: relative;
}

.head-wrapper::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--purple-main);
    filter: blur(30px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
}

.player-preview img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.25);
    image-rendering: pixelated;
    border: 4px solid white;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #e0e0e0;
}

#playerNameDisplay {
    font-weight: 900;
    color: var(--purple-dark);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.voucher-form {
    text-align: left;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 800;
    color: var(--purple-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 2px solid rgba(124, 58, 237, 0.15);
    background: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: 0.3s;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-group input::placeholder {
    color: #a1a1aa;
    font-weight: 400;
}

.input-group input:focus {
    border-color: var(--purple-main);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.w-100 {
    width: 100%;
    margin-top: 10px;
}
/* =========================================
   OSTATNIE ZAKUPY (sklep.html)
   ========================================= */

.recent-purchases {
    margin-bottom: 120px;
}

.recent-buyers-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.buyer-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.buyer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.buyer-head {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    image-rendering: pixelated; /* Ostrość tekstury MC */
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.buyer-card:hover .buyer-head {
    transform: scale(1.1);
}

.buyer-nick {
    font-weight: 800;
    color: var(--purple-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.buyer-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-main);
    background: rgba(124, 58, 237, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

/* Pusty stan ze znakiem zapytania */
.empty-buyer {
    opacity: 0.7;
    border: 1px dashed rgba(124, 58, 237, 0.3);
    background: rgba(255, 255, 255, 0.4);
}

.empty-buyer .buyer-item {
    background: transparent;
    color: var(--text-muted);
}
/* =========================================
   CHECKOUT MODAL (PODSUMOWANIE PŁATNOŚCI)
   ========================================= */

.checkout-box {
    max-width: 550px !important; /* Węższe, zgrabniejsze okienko */
}

/* Informacja o wybranym pakiecie w koszyku */
.selected-package-info {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(217, 70, 239, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.selected-package-info span:first-child {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--purple-dark);
}

.price-badge {
    background: var(--purple-main);
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 8px 15px var(--purple-glow);
}

/* Formularz w koszyku używa tych samych pól co Voucher */
.voucher-form {
    text-align: left;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 800;
    color: var(--purple-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 2px solid rgba(124, 58, 237, 0.15);
    background: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: 0.3s;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-group input:focus {
    border-color: var(--purple-main);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

/* =========================================
   ANIMOWANE CHECKBOXY (REGULAMINY)
   ========================================= */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    background: #fdfcff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Wygląd pustego Checkboxa */
.checkmark {
    width: 24px;
    height: 24px;
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
    transition: 0.2s ease-in-out;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--purple-main);
    background: rgba(124, 58, 237, 0.1);
}

/* Wygląd po zaznaczeniu */
.custom-checkbox input:checked ~ .checkmark {
    background: var(--purple-main);
    border-color: var(--purple-main);
    box-shadow: 0 5px 10px var(--purple-glow);
}

/* Animowany "ptaszek" (haczyk) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Tekst obok checkboxa */
.cb-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 1px;
}

.cb-text a {
    color: var(--purple-main);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(124, 58, 237, 0.3);
    text-underline-offset: 3px;
}

.cb-text a:hover {
    color: var(--purple-dark);
    text-decoration-color: var(--purple-dark);
}

.w-100 {
    width: 100%;
}
/* =========================================
   REGULAMIN – CZYTELNOŚĆ
   ========================================= */

.modal-section {
    margin-bottom: 45px;
}

.modal-section h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--purple-dark);
    margin-bottom: 14px;
}

.modal-section p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.modal-section ul {
    padding-left: 22px;
}

.modal-section li {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.modal-section strong {
    color: var(--purple-dark);
}