
/* =========================================
   1. FUNDAMENTY I NOWOCZESNE ZMIENNE
   ========================================= */
:root {
  --bg-dark: #0b0c10;        /* Głębia tła */
  --bg-sidebar: #12141d;     /* Panele boczne */
  --bg-main: #161923;        /* Centrum */
  --bg-card: rgba(255, 255, 255, 0.03);
  --accent: #00d2ff;         /* Neonowy błękit */
  --accent-glow: rgba(0, 210, 255, 0.3);
  --text-main: #ffffff;
  --text-muted: #949ba4;
  --glass-border: rgba(255, 255, 255, 0.08);
  --success: #00ff88;
  --danger: #ff4f4f;
}
* { box-sizing: border-box; outline: none; }

html, body {
  margin: 0; padding: 0;
  height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Noto Sans', sans-serif;
  overflow: hidden; /* Przewijamy tylko main */
}

body { display: flex; flex-direction: row; }

/* =========================================
   3. GŁÓWNA TREŚĆ (MAIN - INDEX)
   ========================================= */
main {
  flex: 1;
  background: radial-gradient(circle at 50% -20%, #1c2a4e 0%, #0b0c10 85%);
  overflow-y: auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-dark);
}
main::-webkit-scrollbar {
  width: 8px;
  background: var(--bg-dark);
}
main::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}
main::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .message.skullbot_msg {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .infomsg {
        justify-content: center;
    }
    
    .roles_infomsg {
        justify-content: center;
    }
}

/* =============================
   KARTA INFORMACJI O USERZE (ADMIN)
   ============================= */
.user-info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 30px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0,210,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  backdrop-filter: blur(6px);
}
.user-info-card .user-avatar {
  flex-shrink: 0;
  margin-right: 0;
}
.user-info-card .round-img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  border: 2px solid var(--accent);
}
.user-info-card .message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-info-card .message-about {
  margin-bottom: 8px;
}
.user-info-card .username {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.user-info-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.user-info-card .user-details {
  margin-top: 8px;
}
.user-info-card .infomsg {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.user-info-card .btn-primary {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 0 4px var(--accent-glow);
  transition: background 0.2s, color 0.2s;
}
.user-info-card .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .message.skullbot_msg {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .infomsg {
        justify-content: center;
    }
    
    .roles_infomsg {
        justify-content: center;
    }
}

/* =============================
   KARTA INFORMACJI O USERZE (ADMIN)
   ============================= */
.user-info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 30px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0,210,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  backdrop-filter: blur(6px);
}
.user-info-card .user-avatar {
  flex-shrink: 0;
  margin-right: 0;
}
.user-info-card .round-img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  border: 2px solid var(--accent);
}
.user-info-card .message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-info-card .message-about {
  margin-bottom: 8px;
}
.user-info-card .username {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.user-info-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.user-info-card .user-details {
  margin-top: 8px;
}
.user-info-card .infomsg {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.user-info-card .btn-primary {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 0 4px var(--accent-glow);
  transition: background 0.2s, color 0.2s;
}
.user-info-card .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .message.skullbot_msg {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .infomsg {
        justify-content: center;
    }
    
    .roles_infomsg {
        justify-content: center;
    }
}

/* =============================
   KARTA INFORMACJI O USERZE (ADMIN)
   ============================= */
.user-info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 30px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0,210,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  backdrop-filter: blur(6px);
}
.user-info-card .user-avatar {
  flex-shrink: 0;
  margin-right: 0;
}
.user-info-card .round-img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  border: 2px solid var(--accent);
}
.user-info-card .message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-info-card .message-about {
  margin-bottom: 8px;
}
.user-info-card .username {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.user-info-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.user-info-card .user-details {
  margin-top: 8px;
}
.user-info-card .infomsg {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.user-info-card .btn-primary {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 0 4px var(--accent-glow);
  transition: background 0.2s, color 0.2s;
}
.user-info-card .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .message.skullbot_msg {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .infomsg {
        justify-content: center;
    }
    
    .roles_infomsg {
        justify-content: center;
    }
}

/* =============================
   KARTA INFORMACJI O USERZE (ADMIN)
   ============================= */
.user-info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 30px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0,210,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  backdrop-filter: blur(6px);
}
.user-info-card .user-avatar {
  flex-shrink: 0;
  margin-right: 0;
}
.user-info-card .round-img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  border: 2px solid var(--accent);
}
.user-info-card .message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-info-card .message-about {
  margin-bottom: 8px;
}
.user-info-card .username {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.user-info-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.user-info-card .user-details {
  margin-top: 8px;
}
.user-info-card .infomsg {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.user-info-card .btn-primary {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 0 4px var(--accent-glow);
  transition: background 0.2s, color 0.2s;
}
.user-info-card .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .message.skullbot_msg {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .infomsg {
        justify-content: center;
    }
    
    .roles_infomsg {
        justify-content: center;
    }
}

/* =============================
   KARTA INFORMACJI O USERZE (ADMIN)
   ============================= */
.user-info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 30px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0,210,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  backdrop-filter: blur(6px);
}
.user-info-card .user-avatar {
  flex-shrink: 0;
  margin-right: 0;
}
.user-info-card .round-img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  border: 2px solid var(--accent);
}
.user-info-card .message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-info-card .message-about {
  margin-bottom: 8px;
}
.user-info-card .username {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.user-info-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.user-info-card .user-details {
  margin-top: 8px;
}
.user-info-card .infomsg {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.user-info-card .btn-primary {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 0 4px var(--accent-glow);
  transition: background 0.2s, color 0.2s;
}
.user-info-card .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .message.skullbot_msg {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .infomsg {
        justify-content: center;
    }
    
    .roles_infomsg {
        justify-content: center;
    }
}

/* =============================
   KARTA INFORMACJI O USERZE (ADMIN)
   ============================= */
.user-info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 30px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0,210,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  backdrop-filter: blur(6px);
}
.user-info-card .user-avatar {
  flex-shrink: 0;
  margin-right: 0;
}
.user-info-card .round-img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  border: 2px solid var(--accent);
}
.user-info-card .message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-info-card .message-about {
  margin-bottom: 8px;
}
.user-info-card .username {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.user-info-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.user-info-card .user-details {
  margin-top: 8px;
}
.user-info-card .infomsg {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.user-info-card .btn-primary {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 0 4px var(--accent-glow);
  transition: background 0.2s, color 0.2s;
}
.user-info-card .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .message.skullbot_msg {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .infomsg {
        justify-content: center;
    }
    
    .roles_infomsg {
        justify-content: center;
    }
}

/* =============================
   KARTA INFORMACJI O USERZE (ADMIN)
   ============================= */
.user-info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 30px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0,210,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  backdrop-filter: blur(6px);
}
.user-info-card .user-avatar {
  flex-shrink: 0;
  margin-right: 0;
}
.user-info-card .round-img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  border: 2px solid var(--accent);
}
.user-info-card .message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-info-card .message-about {
  margin-bottom: 8px;
}
.user-info-card .username {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.user-info-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.user-info-card .user-details {
  margin-top: 8px;
}
.user-info-card .infomsg {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.user-info-card .btn-primary {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 0 4px var(--accent-glow);
  transition: background 0.2s, color 0.2s;
}
.user-info-card .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .message.skullbot_msg {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .infomsg {
        justify-content: center;
    }
    
    .roles_infomsg {
        justify-content: center;
    }
}

/* =============================
   KARTA INFORMACJI O USERZE (ADMIN)
   ============================= */
.user-info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 30px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0,210,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  backdrop-filter: blur(6px);
}
.user-info-card .user-avatar {
  flex-shrink: 0;
  margin-right: 0;
}
.user-info-card .round-img {
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  border: 2px solid var(--accent);
}
.user-info-card .message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-info-card .message-about {
  margin-bottom: 8px;
}
.user-info-card .username {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.user-info-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.user-info-card .user-details {
  margin-top: 8px;
}
.user-info-card .infomsg {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.user-info-card .btn-primary {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 0 4px var(--accent-glow);
  transition: background 0.2s, color 0.2s;
}
.user-info-card .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsywność */
@media (max-width: 1200px) {
    footer {
        display: none; /* Ukrywamy prawy panel na mniejszych ekranach tak jak w Discordzie */
    }
}


/* =========================================
   TICKETS.PHP - SYSTEM ODWOŁAŃ
   ========================================= */

/* Kontener główny */
.ticket-system-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Nagłówek sekcji */
.hero-small {
    margin-bottom: 40px;
}
.main-admin-avatar img{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px solid var(--accent);
}

.top-nav-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.icon-neon {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 1.5rem;
    font-weight: bold;
}

