:root {
    --bg-color: #0f0f13;
    --text-color: #ffffff;
    --primary-color: #5865F2;
    --primary-hover: #4752C4;
    --admin-color: #1e40af;
    --admin-color-light: #3b82f6;
    --accent-color: #eb459e;
    --cyan-color: #00a8ff;
    --cyan-dim: rgba(0, 168, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f1015;
}

::-webkit-scrollbar-thumb {
    background: #2b2d38;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5865F2;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
}

body {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    font-family: var(--font-main);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at top center,
            rgba(56, 130, 246, 0.35),
            rgba(15, 23, 42, 0.9) 45%,
            #020617 80%),
        linear-gradient(180deg,
            #0F172A 0%,
            #020617 100%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: -50%;
    background:
        radial-gradient(ellipse at top center,
            rgba(56, 130, 246, 0.15),
            transparent 60%);
    animation: rotateBackground 30s linear infinite;
    z-index: -1;
    pointer-events: none;
}


@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 3rem;
    position: sticky;
    top: 20px;
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(18, 19, 26, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    cursor: pointer;
}

.logo:hover {
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #00a8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
    margin: 0;
}

.menu-toggle {
    display: none;
}

.logo:hover h1 {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
}

.nav-links:hover {
    transform: none;
    background: none;
    border: none;
}

.nav-links li a {
    text-decoration: none;
    color: #b0b3c2;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    background: none;
    border-radius: 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
    display: block;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: white;
    background: none;
    box-shadow: none;
    transform: none;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.discord-btn {
    justify-self: end;
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    border: none;
    margin: 0;
    transform: none;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    border-color: transparent;
}

.mobile-only {
    display: none;
}

body::after {
    display: none;
}

.hero {
    min-height: 75vh;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 2rem 3rem;
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: -2px;
    max-width: 900px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 20%, #5865F2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(88, 101, 242, 0.5));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b3c2;
    max-width: 600px;
    margin: 0 0 3.5rem 0;
    line-height: 1.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.hero-btn {
    padding: 1.2rem 3rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-btn.primary {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    border: none;
}


.hero-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
    background: linear-gradient(135deg, #4752C4, #3640a3);
}

.hero-btn i {
    font-size: 1.3rem;
}

.stats-section {
    width: 90%;
    margin: 0 auto;
    padding: 5rem 3rem;
    text-align: center;
}

.stats-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.stats-subtitle {
    font-size: 1.15rem;
    color: #9ca0b0;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(18, 19, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.stat-icon.purple {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.stat-icon.blue {
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
}

.stat-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.stat-icon.discord {
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-btn {
        justify-content: center;
        width: 100%;
    }
}

.container {
    flex: 1;
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.glass-card p {
    color: #aaa;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.primary-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid var(--glass-border);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .glass-card {
        padding: 2rem;
    }

    .glass-card h2 {
        font-size: 2rem;
    }
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.app-card {
    background: #12131a;
    border: 1px solid #2b2d38;
    border-radius: 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    /* Wymuszenie centrowania tekstu na kartach aplikacji */
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.border-gold {
    border: 1px solid #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.05) inset;
}

.border-blue {
    border: 1px solid #5865F2;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.05) inset;
}

.border-red {
    border: 1px solid #ff4757;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.05) inset;
}

.border-orange {
    border: 1px solid #ffa502;
    box-shadow: 0 0 10px rgba(255, 165, 2, 0.05) inset;
}

.border-purple {
    border: 1px solid #00a8ff;
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.05) inset;
}


.card-header {
    padding: 3.5rem 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

.card-body {
    padding: 2rem 2.5rem;
    text-align: left;
}

.card-body h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: white;
}

.card-body p {
    color: #9ca0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.card-footer {
    margin-top: auto;
    padding: 1.5rem 2.5rem 2rem;
    border-top: 1px solid #2b2d38;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-stats {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.app-stats i {
    color: #5865F2;
    font-size: 1.1rem;
}

.apply-btn {
    background: #1b2f28;
    color: white;
    padding: 0.7rem 1.6rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #2e4c42;
}

.border-gold .apply-btn {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.border-blue .apply-btn {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
    color: #5865F2;
}

.border-red .apply-btn {
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.border-orange .apply-btn {
    background: rgba(255, 165, 2, 0.1);
    border-color: rgba(255, 165, 2, 0.3);
    color: #ffa502;
}

.border-purple .apply-btn {
    background: rgba(0, 168, 255, 0.1) !important;
    border-color: rgba(0, 168, 255, 0.3) !important;
    color: #00a8ff !important;
}

.border-teal {
    border: 1px solid #2ed8a3;
    box-shadow: 0 0 10px rgba(46, 216, 163, 0.05) inset;
}

.border-teal .apply-btn {
    background: rgba(46, 216, 163, 0.1);
    border-color: rgba(46, 216, 163, 0.3);
    color: #2ed8a3;
}

.apply-btn:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.profile-dropdown {
    position: relative;
    display: flex;
    justify-self: end;
    align-items: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: rgba(18, 19, 26, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    z-index: 1001;
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 1rem 1.5rem;
    color: #b0b3c2;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-item:last-child {
    border-bottom: none;
}

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

.dropdown-item i {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.nav-avatar-container {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-avatar-container:hover {
    transform: scale(1.05);
}

.nav-avatar-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 2px solid #5865F2 !important;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.4) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    background: rgba(18, 19, 26, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #b0b3c2;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(90deg, #fff, #b0b3c2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #0b0c10;
    border: 1px solid #2b2d38;
    color: #fff;
    padding: 1.2rem;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #5865F2;
    background: #13141f;
    box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #3e414d;
    font-weight: 400;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23b0b3c2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-color);
    color: #fff;
}

.form-section-header {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Wymuszenie ułożenia od lewej w linii */
    gap: 1.2rem;
    background: #0b0c10;
    border: 1px solid #2b2d38;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.custom-checkbox-group .custom-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b0b3c2;
    user-select: none;
    transition: color 0.3s;
    width: fit-content;
    margin-bottom: 0;
    /* Resetting form-group label margin */
    background: none;
    -webkit-text-fill-color: initial;
    /* Resetting form-group gradient text */
}

.custom-checkbox-group .custom-checkbox-label:hover {
    color: #fff;
}

.custom-checkbox-group .custom-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox-mark {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 22px;
    width: 22px;
    background-color: transparent;
    border: 2px solid #5865F2;
    border-radius: 6px;
    margin-right: 15px;
    transition: all 0.3s;
}

.custom-checkbox-group .custom-checkbox-label:hover input~.custom-checkbox-mark {
    background-color: rgba(88, 101, 242, 0.1);
}

.custom-checkbox-group .custom-checkbox-label input:checked~.custom-checkbox-mark {
    background-color: transparent;
    border-color: #5865F2;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}

.custom-checkbox-mark:after {
    content: "";
    display: none;
    width: 12px;
    height: 12px;
    background-color: #5865F2;
    border-radius: 4px;
}

.custom-checkbox-group .custom-checkbox-label input:checked~.custom-checkbox-mark:after {
    display: block;
}

.scale-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0b0c10;
    border: 1px solid #2b2d38;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
    gap: 1rem;
    flex-wrap: wrap;
    /* Pozwala zawijać kafelki na mniejszych ekranach */
}

.scale-option {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    user-select: none;
    min-width: 40px;
}

.scale-number {
    color: #b0b3c2;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.scale-option:hover .scale-number {
    color: #fff;
}

.scale-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.scale-mark {
    position: relative;
    display: inline-block;
    height: 24px;
    width: 24px;
    background-color: #13141f;
    border: 2px solid #5865F2;
    border-radius: 50%;
    transition: all 0.3s;
}

.scale-option:hover input~.scale-mark {
    background-color: rgba(88, 101, 242, 0.2);
}

.scale-option input:checked~.scale-number {
    color: #5865F2;
}

.scale-option input:checked~.scale-mark {
    background-color: transparent;
    border-color: #5865F2;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}

.scale-mark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #5865F2;
}

.scale-option input:checked~.scale-mark:after {
    display: block;
}

form .apply-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

form .apply-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.border-blue .apply-btn {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
    color: #5865F2;
}

.border-red .apply-btn {
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.border-orange .apply-btn {
    background: rgba(255, 165, 2, 0.1);
    border-color: rgba(255, 165, 2, 0.3);
    color: #ffa502;
}

.border-purple .apply-btn {
    background: #0a60ff;
    border-color: #0a60ff;
    color: #3b72d8;
}

.apply-btn:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: rgba(18, 19, 26, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    z-index: 1001;
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 1rem 1.5rem;
    color: #b0b3c2;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-item:last-child {
    border-bottom: none;
}

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

.dropdown-item i {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.nav-avatar-container {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    background: rgba(18, 19, 26, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #b0b3c2;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(90deg, #fff, #b0b3c2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0b0c10;
    border: 1px solid #2b2d38;
    color: #fff;
    padding: 1.2rem;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5865F2;
    background: #13141f;
    box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #3e414d;
    font-weight: 400;
}

form .apply-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

form .apply-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.form-submit-btn {
    background: #2b2d38;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    filter: brightness(1.2);
}

.form-submit-btn i {
    margin-left: 10px;
}

.form-submit-btn.lspd {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.4);
    border-color: #5865F2;
}

.form-submit-btn.ems {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.4);
    border-color: #ff4757;
}

.form-submit-btn.doj {
    background: linear-gradient(135deg, #ffa502, #eccc68);
    box-shadow: 0 10px 20px rgba(255, 165, 2, 0.4);
    border: none;
    color: #1e272e;
}


.form-submit-btn.lsc {
    background: linear-gradient(135deg, #ffa502, #ff7f50);
    box-shadow: 0 10px 20px rgba(255, 165, 2, 0.4);
    border-color: #ffa502;
}

.form-submit-btn.adm {
    background: linear-gradient(135deg, #00a8ff, #008be3);
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.4);
    border-color: #00a8ff;
}

.form-submit-btn.doc {
    background: linear-gradient(135deg, #2ed8a3, #1ebc8c);
    box-shadow: 0 10px 20px rgba(46, 216, 163, 0.4);
    border: none;
    color: #12131a;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    appearance: none;
    -webkit-appearance: none;
    border: none;
}

input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.hero {
    text-align: left;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 10% 0 5%;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 800px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--cyan-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b3c2;
    max-width: 600px;
    margin: 0 0 3rem 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-btn.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.hero-btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.5);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.why-us {
    position: relative;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(18, 19, 26, 0.9) 0%, rgba(25, 27, 35, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(88, 101, 242, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(88, 101, 242, 0.1);
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .icon-box {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.icon-box.blue {
    color: #5865F2;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.05));
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.2);
}

.feature-card:hover .icon-box.blue {
    box-shadow: 0 8px 40px rgba(88, 101, 242, 0.4),
        0 0 60px rgba(88, 101, 242, 0.2);
}

.icon-box.gold {
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.feature-card:hover .icon-box.gold {
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.2);
}

.icon-box.red {
    color: #ff4757;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.15), rgba(255, 71, 87, 0.05));
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.2);
}

.feature-card:hover .icon-box.red {
    box-shadow: 0 8px 40px rgba(255, 71, 87, 0.4),
        0 0 60px rgba(255, 71, 87, 0.2);
}

.icon-box.purple {
    color: #a55eea;
    background: linear-gradient(135deg, rgba(165, 94, 234, 0.15), rgba(165, 94, 234, 0.05));
    box-shadow: 0 4px 20px rgba(165, 94, 234, 0.2);
}

.feature-card:hover .icon-box.purple {
    box-shadow: 0 8px 40px rgba(165, 94, 234, 0.4),
        0 0 60px rgba(165, 94, 234, 0.2);
}

.icon-box.cyan {
    color: #00a8ff;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.15), rgba(0, 168, 255, 0.05));
    box-shadow: 0 4px 20px rgba(0, 168, 255, 0.2);
}

.feature-card:hover .icon-box.cyan {
    box-shadow: 0 8px 40px rgba(0, 168, 255, 0.4),
        0 0 60px rgba(0, 168, 255, 0.2);
}

.icon-box.green {
    color: #2ecc71;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.2);
}

.feature-card:hover .icon-box.green {
    box-shadow: 0 8px 40px rgba(46, 204, 113, 0.4),
        0 0 60px rgba(46, 204, 113, 0.2);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #b0b3c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: #9ca0b0;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .navbar>.discord-btn {
        display: none;
        /* Ukryj główny przycisk na małych ekranach */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        margin-top: 1.5rem;
        text-align: center;
        background: rgba(18, 19, 26, 0.95);
        padding: 2rem 0;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: static;
        transform: none;
        align-items: center;
        /* Dodano centrowanie zawartości mobilnego menu */
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .scale-group {
        justify-content: center;
        padding: 1rem;
        gap: 0.8rem;
    }

    .scale-option {
        min-width: 35px;
        gap: 0.3rem;
    }

    .scale-number {
        font-size: 0.85rem;
    }

    .scale-mark {
        width: 20px;
        height: 20px;
    }

    .scale-mark:after {
        width: 10px;
        height: 10px;
    }

    .mobile-only {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    .navbar .discord-btn {
        display: none;
    }

    .nav-links .discord-btn {
        display: inline-flex;
        margin: 0 auto;
    }

    .navbar>.profile-dropdown {
        display: none;
    }

    .glass-card {
        padding: 2rem;
    }

    .glass-card h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 0 5%;
        margin-top: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

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

    .card-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 3.5rem;
    }

    .card-body {
        padding: 1.5rem 1.5rem;
    }

    .card-footer {
        padding: 1.5rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .card-footer .apply-btn {
        justify-content: center;
    }

    .rule-section {
        padding-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-number {
        margin-bottom: 0.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-heading {
        font-size: 2rem;
        line-height: 1.2;
    }

    .stats-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

@media (max-width: 900px) and (orientation: landscape) {
    .glass-card {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .scale-group {
        padding: 0.8rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}

.site-footer {
    margin-top: auto;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 18, 0.97) 20%, #080a12 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 2rem 0;
}

.site-footer .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.site-footer .footer-brand-block {
    max-width: 320px;
}

.site-footer .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.site-footer .footer-brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.site-footer .footer-brand span {
    color: var(--primary-color);
}

.site-footer .footer-desc {
    color: #8b92a6;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.site-footer .footer-social {
    display: flex;
    gap: 0.75rem;
}

.site-footer .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    text-decoration: none;
    border-bottom: none;
    box-shadow: none;
}

.site-footer .footer-social a::after {
    display: none;
}

.site-footer .footer-social a i {
    display: block;
    line-height: 1;
    text-decoration: none;
}

.site-footer .footer-social a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(88, 101, 242, 0.1);
}

.site-footer .footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.site-footer .footer-col ul {
    list-style: none;
}

.site-footer .footer-col ul li {
    margin-bottom: 0.65rem;
}

.site-footer .footer-col ul li::before {
    content: "·";
    color: #4b5563;
    margin-right: 0.5rem;
    font-weight: bold;
}

.site-footer .footer-col a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.site-footer .footer-col a:hover {
    color: var(--primary-color);
}

.site-footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-contact-item:hover {
    color: var(--primary-color);
}

.site-footer .footer-contact-item i {
    color: var(--primary-color);
    opacity: 0.9;
    margin-right: 0.25rem;
}

.site-footer .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #6b7280;
    font-size: 0.85rem;
}

.site-footer .footer-bottom-left,
.site-footer .footer-bottom-right {
    margin: 0;
}

@media (max-width: 900px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer .footer-brand-block {
        max-width: none;
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .site-footer .footer-brand-block {
        text-align: center;
    }

    .site-footer .footer-social {
        justify-content: center;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}