* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #070a0f;
    --panel: #10151f;
    --panel-soft: #171d29;
    --blue: #4da3ff;
    --blue-dark: #0f6fd8;
    --text: #ffffff;
    --muted: #9daabd;
    --border: rgba(255, 255, 255, 0.1);
    --green: #55f28b;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 0%, rgba(49, 113, 255, 0.18), transparent 32%),
        linear-gradient(180deg, #080c13 0%, #05070b 100%);
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background: rgba(5, 8, 14, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span {
    color: var(--blue);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.main-nav a:hover {
    color: var(--blue);
}

.hero {
    min-height: calc(100vh - 84px);
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    align-items: center;
    gap: 70px;
    padding: 80px 6%;
}

.hero-copy h1 {
    max-width: 950px;
    margin-bottom: 26px;
    font-size: clamp(52px, 7vw, 100px);
    line-height: 0.94;
    letter-spacing: -4px;
}

.hero-copy h1 span {
    color: var(--blue);
}

.hero-copy p {
    max-width: 680px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #04101a;
    background: var(--blue);
    box-shadow: 0 14px 30px rgba(77, 163, 255, 0.22);
}

.button-secondary {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover {
    border-color: var(--blue);
}

.server-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(18, 24, 35, 0.98), rgba(11, 15, 23, 0.98));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.status {
    margin-bottom: 22px;
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
}

.server-name {
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 900;
}

.server-ip {
    margin-bottom: 28px;
    color: var(--blue);
    font-size: 17px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.stat {
    min-height: 86px;
    padding: 16px;
    border-radius: 10px;
    background: var(--panel-soft);
}

.stat b {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.stat span {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 46px;
        padding-top: 55px;
    }

    .hero-copy h1 {
        letter-spacing: -2px;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 20px;
    }

    .hero {
        padding: 45px 20px 60px;
    }

    .hero-copy h1 {
        font-size: 48px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

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

.status.offline {
    color: #ff5d68;
}
.server-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.button-small {
    min-height: 42px;
    padding: 11px 18px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

@media (max-width: 560px) {
    .server-actions {
        flex-direction: column;
    }

    .server-actions .button {
        width: 100%;
    }
}
.server-info-section {
    padding: 100px 6%;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.08), transparent 35%),
        #070a0f;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.server-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(18, 24, 35, 0.96),
            rgba(10, 14, 21, 0.96)
        );
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 163, 255, 0.55);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.feature-icon {
    margin-bottom: 18px;
    font-size: 34px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.65;
}

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

@media (max-width: 560px) {
    .server-info-section {
        padding: 75px 20px;
    }

    .server-features {
        grid-template-columns: 1fr;
    }
}
.map-image {
    width: 100%;
    margin-top: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: .3s;
}

.map-image:hover {
    transform: scale(1.02);
}
.players-section {
    padding: 100px 6%;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(39, 180, 255, 0.08),
            transparent 40%
        ),
        #080b11;
    border-top: 1px solid var(--border);
}

.players-panel {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(12, 17, 25, 0.96);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.players-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    font-weight: 800;
}

.players-panel-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.players-panel-header strong {
    color: var(--blue);
}

.players-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3cff85;
    box-shadow: 0 0 16px rgba(60, 255, 133, 0.8);
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.55;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.players-table-header,
.player-row {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 100px 100px;
    align-items: center;
    gap: 14px;
}

.players-table-header {
    padding: 15px 26px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.player-row {
    padding: 17px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.player-row:last-child {
    border-bottom: none;
}

.player-row:hover {
    background: rgba(77, 163, 255, 0.06);
}

.player-position {
    color: var(--muted);
    font-weight: 900;
}

.player-name {
    min-width: 0;
    overflow: hidden;
    color: #ffffff;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-score {
    color: var(--blue);
    font-weight: 900;
}

.player-duration {
    color: var(--muted);
}

.players-loading,
.players-empty,
.players-error {
    padding: 40px 25px;
    color: var(--muted);
    text-align: center;
}

.players-error {
    color: #ff6b6b;
}

@media (max-width: 650px) {
    .players-section {
        padding: 75px 18px;
    }

    .players-panel-header {
        padding: 18px;
    }

    .players-table-header,
    .player-row {
        grid-template-columns: 38px minmax(0, 1fr) 60px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .players-table-header span:last-child,
    .player-duration {
        display: none;
    }
}
.discord-section {
    padding: 100px 6%;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(88, 101, 242, 0.18),
            transparent 35%
        ),
        #070a10;
}

.discord-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 50px;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
    padding: 55px;
    overflow: hidden;
    border: 1px solid rgba(88, 101, 242, 0.35);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(18, 22, 35, 0.98),
            rgba(9, 12, 20, 0.98)
        );
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.discord-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #8c95ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.discord-content h2 {
    margin: 0 0 20px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1;
}

.discord-content p {
    max-width: 650px;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.discord-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.discord-benefits span {
    color: #d9dcff;
    font-size: 14px;
    font-weight: 700;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    color: #ffffff;
    background: #5865f2;
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    background: #6975f5;
    transform: translateY(-3px);
}

.discord-visual {
    display: flex;
    min-height: 300px;
    padding: 35px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(88, 101, 242, 0.25),
            transparent 65%
        ),
        rgba(255, 255, 255, 0.025);
}

.discord-logo {
    display: flex;
    width: 95px;
    height: 95px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    color: #ffffff;
    background: #5865f2;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(88, 101, 242, 0.38);
}

.discord-visual strong {
    margin-bottom: 7px;
    font-size: 23px;
}

.discord-visual > span {
    color: var(--muted);
}

.discord-status {
    display: flex;
    margin-top: 25px;
    padding: 10px 16px;
    align-items: center;
    gap: 9px;
    border-radius: 30px;
    color: #caffd9;
    background: rgba(60, 255, 133, 0.08);
    font-size: 13px;
    font-weight: 800;
}

.discord-status i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3cff85;
    box-shadow: 0 0 14px rgba(60, 255, 133, 0.8);
}

@media (max-width: 850px) {
    .discord-card {
        grid-template-columns: 1fr;
        padding: 38px 28px;
    }

    .discord-visual {
        min-height: 250px;
    }
}

@media (max-width: 560px) {
    .discord-section {
        padding: 75px 18px;
    }

    .discord-card {
        padding: 30px 20px;
    }

    .discord-benefits {
        grid-template-columns: 1fr;
    }

    .discord-button {
        width: 100%;
    }
}
.vip-section {
    padding: 100px 6%;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 190, 60, 0.11),
            transparent 35%
        ),
        #080b10;
}

.vip-packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.vip-card {
    position: relative;
    display: flex;
    padding: 34px;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(18, 24, 35, 0.98),
            rgba(9, 13, 20, 0.98)
        );
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.vip-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 190, 60, 0.5);
}

.vip-card-featured {
    border-color: rgba(255, 190, 60, 0.65);
    transform: translateY(-12px);
    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(255, 190, 60, 0.08);
}

.vip-card-featured:hover {
    transform: translateY(-18px);
}

.vip-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 11px;
    border-radius: 30px;
    color: #181000;
    background: #ffbe3c;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 1px;
}

.vip-card-top {
    margin-bottom: 25px;
}

.vip-type {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffbe3c;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.vip-card h3 {
    margin: 0 0 22px;
    font-size: 28px;
}

.vip-price {
    display: flex;
    align-items: flex-end;
    gap: 9px;
}

.vip-price strong {
    color: #ffffff;
    font-size: 45px;
    line-height: 1;
}

.vip-price span {
    color: var(--muted);
    font-size: 14px;
}

.vip-benefits {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.vip-benefits li {
    color: #d7dce6;
    line-height: 1.5;
}

.vip-buy-button {
    width: 100%;
    margin-top: auto;
    color: #171000;
    background: #ffbe3c;
    text-align: center;
}

.vip-buy-button:hover {
    background: #ffca62;
    transform: translateY(-3px);
}

.payment-panel {
    max-width: 1200px;
    margin: 70px auto 0;
    padding: 40px;
    border: 1px solid rgba(255, 190, 60, 0.25);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(18, 23, 32, 0.97),
            rgba(9, 13, 19, 0.97)
        );
}

.payment-header {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.payment-header span {
    color: #ffbe3c;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.payment-header h3 {
    margin: 8px 0 0;
    font-size: 32px;
}

.payment-security {
    padding: 10px 15px;
    border: 1px solid rgba(60, 255, 133, 0.2);
    border-radius: 30px;
    color: #aaffc2;
    background: rgba(60, 255, 133, 0.05);
    font-size: 13px;
    font-weight: 800;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.payment-method {
    display: flex;
    padding: 22px;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
}

.payment-icon {
    display: flex;
    width: 46px;
    min-width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #171000;
    background: #ffbe3c;
    font-size: 20px;
    font-weight: 950;
}

.payment-method h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.payment-method p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.payment-method strong {
    color: #ffca62;
}

.payment-warning {
    margin-top: 25px;
    padding: 18px 20px;
    border-left: 4px solid #ffbe3c;
    border-radius: 8px;
    color: #d9dde5;
    background: rgba(255, 190, 60, 0.055);
    line-height: 1.7;
}

.payment-contact-button {
    display: inline-flex;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #5865f2;
}

.payment-contact-button:hover {
    background: #6975f5;
    transform: translateY(-3px);
}

@media (max-width: 950px) {
    .vip-packages {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .vip-card-featured {
        transform: none;
    }

    .vip-card-featured:hover {
        transform: translateY(-7px);
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vip-section {
        padding: 75px 18px;
    }

    .vip-card {
        padding: 28px 22px;
    }

    .payment-panel {
        padding: 28px 20px;
    }

    .payment-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-contact-button {
        width: 100%;
    }
}

.vote-section {
    padding: 100px 6%;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(77, 163, 255, 0.12),
            transparent 35%
        ),
        #070a10;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 950px;
    margin: 0 auto;
}

.vote-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(18, 24, 35, 0.98),
            rgba(9, 13, 20, 0.98)
        );
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.vote-card:hover {
    transform: translateY(-7px);
    border-color: rgba(77, 163, 255, 0.55);
}

.vote-logo {
    display: inline-flex;
    min-width: 95px;
    height: 55px;
    margin-bottom: 22px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #287dff,
            #6b4cff
        );
    font-size: 17px;
    font-weight: 950;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(66, 101, 255, 0.25);
}

.vote-card h3 {
    margin: 0 0 14px;
    font-size: 25px;
}

.vote-card p {
    margin: 0 0 26px;
    color: var(--muted);
    line-height: 1.7;
}

.vote-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #287dff;
}

.vote-button:hover {
    background: #4290ff;
    transform: translateY(-3px);
}

.vote-note {
    max-width: 950px;
    margin: 28px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(60, 255, 133, 0.18);
    border-radius: 14px;
    color: #cfe8d6;
    text-align: center;
    background: rgba(60, 255, 133, 0.05);
    line-height: 1.7;
}

.vote-note strong {
    margin-right: 5px;
    color: #7cff9f;
}

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

@media (max-width: 560px) {
    .vote-section {
        padding: 75px 18px;
    }

    .vote-card {
        padding: 28px 22px;
    }
}
.site-footer {
    border-top: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(77, 163, 255, 0.08),
            transparent 30%
        ),
        #05070b;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, minmax(150px, 1fr));
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 6%;
}

.footer-logo {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--blue);
}

.footer-brand p {
    max-width: 420px;
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.footer-server {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
}

.footer-server strong {
    color: #ffffff;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
}

.footer-column h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 16px;
}

.footer-column a,
.footer-copy-button {
    padding: 0;
    border: none;
    color: var(--muted);
    background: transparent;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-copy-button:hover {
    color: var(--blue);
}

.footer-status {
    display: flex;
    margin-top: 8px;
    align-items: center;
    gap: 8px;
    color: #bfffd0;
    font-size: 13px;
    font-weight: 800;
}

.footer-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3cff85;
    box-shadow: 0 0 12px rgba(60, 255, 133, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 6%;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

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

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding-top: 55px;
        padding-bottom: 45px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
