/* Root Variables & Colors */
:root {
    --bg-primary: #08060b;
    --bg-secondary: #100c17;
    --bg-card: rgba(20, 15, 28, 0.7);
    --bg-card-hover: rgba(28, 22, 38, 0.85);
    
    --color-gold: #d4af37;
    --color-gold-hover: #ffd700;
    --color-gold-glow: rgba(212, 175, 55, 0.3);
    
    --color-purple: #9d4edd;
    --color-purple-bright: #c77dff;
    --color-purple-glow: rgba(157, 78, 221, 0.4);
    
    --color-text-main: #e2daf0;
    --color-text-muted: #9f96b2;
    --color-border: rgba(212, 175, 55, 0.2);
    --color-border-active: rgba(212, 175, 55, 0.6);
    
    /* Item Rarity Colors */
    --rarity-unique: #ff3e3e;
    --rarity-unique-glow: rgba(255, 62, 62, 0.45);
    --rarity-legendary: #ffaa00;
    --rarity-legendary-glow: rgba(255, 170, 0, 0.4);
    --rarity-epic: #a060ff;
    --rarity-epic-glow: rgba(160, 96, 255, 0.4);
    --rarity-magic: #00bfff;
    --rarity-magic-glow: rgba(0, 191, 255, 0.4);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-decor {
    text-transform: uppercase;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 15px var(--color-purple-glow);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.title-decor::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.accent-text {
    color: var(--color-gold);
    text-shadow: 0 0 8px var(--color-gold-glow);
}

.text-gold {
    color: var(--color-gold);
}

.text-unique {
    color: var(--rarity-unique);
}

.text-arcoin {
    color: #b88dff;
    text-shadow: 0 0 8px rgba(184, 141, 255, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-purple);
    color: #fff;
    box-shadow: 0 0 15px var(--color-purple-glow);
}

.btn-primary:hover {
    background-color: var(--color-purple-bright);
    box-shadow: 0 0 25px var(--color-purple-glow);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-gold);
    color: #000;
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Header & Navigation (Glassmorphism) */
#nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 6, 11, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

#nav-logo {
    height: 48px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--color-purple-glow));
}

.logo-text {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

#main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-main);
    text-decoration: none;
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    background: url('assets/hero_bg.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 6, 11, 0.4) 0%, rgba(8, 6, 11, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-title {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.6), 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-main);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* Sections Structure */
.section-padding {
    padding: 100px 24px;
}

.bg-alt {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* About Section Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-active);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.2);
    background: var(--bg-card-hover);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--color-gold-glow);
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}


/* Character Progression Gallery Section */
.progression-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.progression-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.progression-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-active);
    box-shadow: 0 20px 45px rgba(157, 78, 221, 0.25);
    background: var(--bg-card-hover);
}

.highlighted-card {
    border: 2px solid var(--color-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.15);
}

.highlighted-card:hover {
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.35);
    border-color: var(--color-gold-hover);
}

.progression-img-wrapper {
    height: 380px;
    background: radial-gradient(circle, rgba(20, 15, 28, 0.9) 0%, rgba(5, 4, 7, 0.98) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.progression-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.7));
    transition: transform 0.4s;
}

.progression-card:hover .progression-img {
    transform: scale(1.05);
}

.progression-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.progression-lvl-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.lvl-strong {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.progression-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.progression-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Dungeon & Crypt Category Styles */
.tab-category-title {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.tab-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
}

.download-tip {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.25);
    padding: 20px;
    border-radius: 4px;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
    text-align: left;
}

/* Items Database Slots Grid */
.database-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.item-slot {
    background: rgba(10, 8, 14, 0.9);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    position: relative;
}

.item-slot:hover {
    transform: scale(1.05);
}

.item-image-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-placeholder-icon {
    width: 42px;
    height: 42px;
    filter: invert(80%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.item-slot:hover .item-placeholder-icon {
    opacity: 0.95;
}

.item-name {
    display: block;
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.item-type-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(255,255,255,0.05);
    color: var(--color-text-muted);
}

/* Item Specific Rarity Themes */
.unique-item {
    border-color: var(--rarity-unique);
}
.unique-item:hover {
    box-shadow: 0 0 25px var(--rarity-unique-glow);
}
.unique-item .item-type-tag {
    background: rgba(255, 62, 62, 0.15);
    color: var(--rarity-unique);
}
.unique-item .item-placeholder-icon {
    filter: invert(24%) sepia(87%) saturate(2716%) hue-rotate(345deg) brightness(98%) contrast(106%);
}

.legendary-item {
    border-color: var(--rarity-legendary);
}
.legendary-item:hover {
    box-shadow: 0 0 25px var(--rarity-legendary-glow);
}
.legendary-item .item-type-tag {
    background: rgba(255, 170, 0, 0.15);
    color: var(--rarity-legendary);
}
.legendary-item .item-placeholder-icon {
    filter: invert(65%) sepia(87%) saturate(541%) hue-rotate(5deg) brightness(101%) contrast(101%);
}

.magic-item {
    border-color: var(--rarity-magic);
}
.magic-item:hover {
    box-shadow: 0 0 25px var(--rarity-magic-glow);
}
.magic-item .item-type-tag {
    background: rgba(0, 191, 255, 0.15);
    color: var(--rarity-magic);
}
.magic-item .item-placeholder-icon {
    filter: invert(63%) sepia(77%) saturate(1914%) hue-rotate(167deg) brightness(100%) contrast(101%);
}

.epic-item {
    border-color: var(--rarity-epic);
}
.epic-item:hover {
    box-shadow: 0 0 25px var(--rarity-epic-glow);
}
.epic-item .item-type-tag {
    background: rgba(160, 96, 255, 0.15);
    color: var(--rarity-epic);
}
.epic-item .item-placeholder-icon {
    filter: invert(49%) sepia(61%) saturate(2704%) hue-rotate(231deg) brightness(98%) contrast(106%);
}

/* Tooltip (Dark Fantasy RPG style) */
.rpg-tooltip {
    position: absolute;
    width: 320px;
    background: #0d0b13;
    border: 2px solid #3c3350;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9), inset 0 0 15px rgba(255,255,255,0.02);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s;
}

.rpg-tooltip.active {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none;
}

.tooltip-header {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tooltip-header h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.tt-unique {
    color: var(--rarity-unique);
    text-shadow: 0 0 10px var(--rarity-unique-glow);
}
.tt-legendary {
    color: var(--rarity-legendary);
    text-shadow: 0 0 10px var(--rarity-legendary-glow);
}
.tt-epic {
    color: var(--rarity-epic);
    text-shadow: 0 0 10px var(--rarity-epic-glow);
}
.tt-magic {
    color: var(--rarity-magic);
    text-shadow: 0 0 10px var(--rarity-magic-glow);
}

.rarity-unique { color: var(--rarity-unique); font-size: 0.8rem; text-transform: uppercase; font-weight: 700; }
.rarity-legendary { color: var(--rarity-legendary); font-size: 0.8rem; text-transform: uppercase; font-weight: 700; }
.rarity-epic { color: var(--rarity-epic); font-size: 0.8rem; text-transform: uppercase; font-weight: 700; }
.rarity-magic { color: var(--rarity-magic); font-size: 0.8rem; text-transform: uppercase; font-weight: 700; }

.tooltip-body {
    padding: 16px;
}

.tt-slot-level {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.tt-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 12px 0;
}

.tt-stats {
    font-size: 0.9rem;
    color: #4ef2f2;
}

.tt-stats span {
    display: block;
    margin-bottom: 6px;
}

.tt-sockets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.tt-socket-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
}

.socket-slot {
    width: 14px;
    height: 14px;
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 50%;
    display: inline-block;
}

.socket-filled {
    border-style: solid;
    border-color: #ffd700;
    box-shadow: 0 0 6px #ffd700;
}

.tt-effect {
    font-size: 0.85rem;
    color: #ffd700;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
    margin-top: 12px;
    font-style: italic;
}
/* Dungeon Summary Section */
.dungeon-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dungeon-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
}

.dungeon-summary-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-active);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.2);
    background: var(--bg-card-hover);
}

.dungeon-summary-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.dungeon-summary-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Download Section & CTA */
.download-bg {
    background: linear-gradient(180deg, rgba(8, 6, 11, 0.95) 0%, rgba(16, 12, 23, 0.9) 100%);
    position: relative;
    text-align: center;
}

.download-content {
    max-width: 700px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.download-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.download-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-download-primary {
    background: var(--color-gold);
    color: #000;
    padding: 16px 36px;
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 0 20px var(--color-gold-glow);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-download-primary:hover {
    background: var(--color-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212,175,55,0.6);
}

.btn-download-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 16px 36px;
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.requirements {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 4px;
    text-align: left;
    max-width: 550px;
    margin: 0 auto;
}

.requirements h4 {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 8px;
}

.requirements ul {
    list-style: none;
}

.requirements li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

/* Footer styling */
footer {
    background: #050407;
    border-top: 1px solid rgba(212,175,55,0.1);
    padding: 60px 24px 30px;
    color: var(--color-text-muted);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

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

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 16px;
}

.footer-links h4, .footer-community h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.discord-btn {
    background: #5865F2;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.discord-btn:hover {
    background: #4752c4;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
    


}

@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--color-border);
        padding: 20px;
    }

    #main-nav.active {
        display: block;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-area {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

}
