/* --- SYSTEM PROJEKTOWY & ZMIENNE --- */
:root {
    /* Kolory bazowe motywu - głęboki grafit/czerń */
    --bg-base: #08090d;
    --bg-surface: #10121a;
    --bg-surface-hover: #151824;
    --bg-card: #12141d;
    --border-color: rgba(255, 255, 255, 0.05);
    
    /* Główne kolory akcentów */
    /* --primary-color jest wstrzykiwany dynamicznie z konfiguracji Azuriom w base.blade.php.
       W przypadku jego braku, stosujemy bezpieczny koralowy pomarańcz. */
    --color-primary: var(--primary-color, #ff6b35);
    --color-secondary: #ffb627; /* Złoty żółty */
    
    --text-main: #f3f4f6;
    --text-muted: #8e95a5;
    
    --color-success: #10b981;
    --color-danger: #ef4444;
    --color-discord: #5865f2;
    
    --gradient-accent: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    
    /* Cienie zoptymalizowane pod kątem renderowania (niski stopień rozmycia na GPU) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.4);
    
    /* Animacje */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BAZA I RESETOWANIE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

/* Dostosowanie pasków przewijania */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --- AMBIENTOWE POŚWIATY W TLE (GPU ACCELERATED) --- */
.ambient-container {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, rgba(255, 107, 53, 0) 70%);
    top: -100px;
    right: -100px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.ambient-glow-left {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 182, 39, 0.01) 0%, rgba(255, 182, 39, 0) 70%);
    bottom: -200px;
    left: -200px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* --- UKŁAD GLÓWNY (GRID LAYOUT) --- */
.app-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* --- PASEK BOCZNY (SIDEBAR) --- */
.app-sidebar {
    background-color: var(--bg-surface);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.2));
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex-grow: 1;
    overflow-y: auto;
}

.nav-section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 1.25rem 0 0.4rem 0.75rem;
    font-weight: 600;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link i {
    font-size: 1.15rem;
    width: 20px;
    text-align: center;
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: #ffffff;
    background-color: var(--bg-surface-hover);
}

.nav-link:hover i {
    transform: scale(1.1);
}

.nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.12);
    font-weight: 600;
}

.nav-link.active i {
    color: var(--color-primary);
}

/* Obsługa podmenu (dropdowns) w pasku bocznym */
.nav-dropdown {
    display: flex;
    flex-direction: column;
}

.nav-dropdown .dropdown-toggle {
    justify-content: space-between;
}

.dropdown-container {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.2rem;
    border-left: 1px solid var(--border-color);
    margin-left: 1.6rem;
}

.nav-link.child-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
}

/* Stopka paska bocznego (Profil użytkownika) */
.sidebar-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 10px;
    transition: background-color var(--transition-fast);
}

.sidebar-user:hover {
    background-color: var(--bg-surface-hover);
}

.user-avatar-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    image-rendering: pixelated;
    background: rgba(255, 255, 255, 0.03);
}

.status-dot-online {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: var(--color-success);
    border: 2px solid var(--bg-surface);
    border-radius: 50%;
}

.user-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- OBSZAR MAIN CONTENT --- */
.app-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- NAGŁÓWEK GÓRNY (TOPBAR) --- */
.app-topbar {
    height: 75px;
    background-color: rgba(8, 9, 13, 0.8);
    border-bottom: 1px solid var(--border-color);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 90;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Widget graczy online */
.status-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(16, 18, 26, 0.6);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    font-size: 0.85rem;
}

.pulse-indicator {
    position: relative;
    width: 8px;
    height: 8px;
}

.pulse-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    top: -5px;
    left: -5px;
    animation: pulseAnim 2s infinite;
    z-index: 1;
}

@keyframes pulseAnim {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.status-badge-text strong {
    color: #ffffff;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- KONTENER TREŚCI --- */
.content-container {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* --- BANER GŁÓWNY (HERO SECTION) --- */
.hero-card {
    background: radial-gradient(100% 100% at 0% 0%, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0) 100%), var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Przyciski */
.btn-custom {
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #08090d;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--bg-surface-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Widget Kopiowania IP */
.ip-copier {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0.35rem 0.5rem 0.35rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.ip-copier:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
}

.ip-text-label {
    color: var(--text-muted);
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.ip-address {
    color: #ffffff;
    font-family: monospace;
    font-weight: 600;
    margin-right: 1.5rem;
}

.ip-copy-btn {
    background-color: var(--bg-surface-hover);
    color: var(--color-primary);
    border: 1px solid rgba(255, 107, 53, 0.15);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.ip-copier:hover .ip-copy-btn {
    background-color: var(--color-primary);
    color: #08090d;
}

/* Wizualizacja Logo w Hero */
.hero-visual {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-logo-large {
    width: 170px;
    height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(255, 107, 53, 0.25));
    animation: floatAnim 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- CECHY SERWERA --- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.section-title i {
    color: var(--color-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.25);
    box-shadow: var(--shadow-sm);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
    background-color: var(--color-primary);
    color: #08090d;
}

.feature-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- GRID AKTUALNOŚCI (NEWS) --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.25);
    box-shadow: var(--shadow-sm);
}

.news-img-container {
    height: 180px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.news-card:hover .news-img {
    transform: scale(1.04);
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(8, 9, 13, 0.85);
    border: 1px solid var(--border-color);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.news-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.news-meta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-meta-info span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.news-card-title {
    font-size: 1.25rem;
    line-height: 1.35;
    transition: color var(--transition-fast);
}

.news-card:hover .news-card-title {
    color: var(--color-primary);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.news-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.news-card:hover .news-card-footer {
    gap: 0.75rem;
}

/* --- STOPKA (FOOTER) --- */
.app-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    background-color: rgba(8, 9, 13, 0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: #ffffff;
}

/* --- MOBILNY NAGŁÓWEK (MOBILE HEADER) --- */
.mobile-header {
    display: none;
    height: 65px;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 0 1.25rem;
    position: sticky;
    top: 0;
    z-index: 110;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.mobile-menu-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
    background-color: var(--bg-surface-hover);
}

/* Tło blokujące wysuwanie na telefonach */
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal) ease;
}

.mobile-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* --- ZGODNOŚĆ Z WTYCZKAMI I PODSTRONAMI AZURIOM --- */
.text-body, .text-dark, .text-muted {
    color: var(--text-muted) !important;
}

p, span, div {
    color: var(--text-main);
}

h1, h2, h3, h4, h5, h6 {
    color: white;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

/* Klasyczne karty Azuriom na podstronach */
.card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

.card-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    color: white;
    font-weight: 600;
}

.card-footer {
    border-top: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
}

/* Listy i Tabele */
.list-group-item {
    background-color: rgba(255, 255, 255, 0.01);
    border-color: var(--border-color);
    color: var(--text-main);
}

.list-group-item.active {
    background-color: rgba(255, 107, 53, 0.1);
    border-color: var(--color-primary);
    color: white;
}

.table {
    color: var(--text-main);
}

.table td, .table th {
    border-color: var(--border-color);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.01);
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
    color: white;
}

/* Formularze */
.form-control, .form-select, .input-group-text {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 8px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Paginacja */
.page-link {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--border-color);
    color: var(--text-main);
}

.page-item.active .page-link {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #08090d;
    font-weight: 600;
}

.page-link:hover {
    background-color: rgba(255, 255, 255, 0.07);
    color: white;
}

/* Dropdowny systemowe */
.dropdown-menu {
    background-color: #12141d;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
}

.dropdown-item {
    color: var(--text-main);
    transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Alerty i odznaki */
.alert {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 10px;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    color: #00ff88;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ff4a76;
}

.badge.bg-primary {
    background-color: var(--color-primary) !important;
    color: #08090d !important;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 1024px) {
    .app-layout {
        grid-template-columns: 1fr;
    }

    .mobile-header {
        display: flex;
    }

    /* Przekształcenie paska bocznego w akcelerowany GPU panel wysuwany */
    .app-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        height: 100vh;
        transform: translate3d(-100%, 0, 0); /* Poza ekranem po lewej */
        transition: transform var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 130;
        box-shadow: 20px 0 40px rgba(0, 0, 0, 0.5);
        will-change: transform;
    }

    .app-sidebar.show {
        transform: translate3d(0, 0, 0);
    }

    .app-topbar {
        height: 60px;
        padding: 0 1.25rem;
    }

    .topbar-left .status-badge {
        display: none;
    }

    .content-container {
        padding: 1.5rem 1.25rem;
        gap: 2rem;
    }

    .hero-card {
        padding: 2rem;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        width: 130px;
        height: 130px;
    }

    .hero-logo-large {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .hero-card {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions > * {
        width: 100%;
        justify-content: center;
    }

    .ip-copier {
        justify-content: space-between;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}
