:root {
    --color-background: #161616;
    --color-text: #cccccc;
    --color-heading: #ffffff;
    --color-primary-glow: #00f0ff;
    --color-secondary-gold: #d4b14e;
    --color-dark-accent: #252525;
    --color-card-bg: #1f1f1f;
    --font-family: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background: linear-gradient(180deg, #0f0f0f 0%, #111417 100%);
    color: var(--color-text);
    line-height: 1.6;
}

a {
    color: var(--color-primary-glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-header {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-dark-accent);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-nav {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary-glow), #00a2ff);
    color: var(--color-background);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.6);
    color: #000;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-secondary-gold);
    color: var(--color-secondary-gold);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-gold);
    color: var(--color-background);
}

main section {
    padding: 40px 0;
}

.hero-banner {
    padding-top: 20px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.slot-card {
    background-color: var(--color-card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-dark-accent);
}

.slot-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.content-section, .comments-section {
    text-align: center;
}

.content-section .container, .comments-section .container {
    max-width: 800px;
}

h1, h2 {
    color: var(--color-primary-glow);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section p {
    text-align: left;
}

/* Comment Form */
#comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#comment-form input, #comment-form textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--color-dark-accent);
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 16px;
}

#comment-form input:focus, #comment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-glow);
}

#comment-form button {
    align-self: center;
}

#form-message {
    margin-top: 20px;
    font-weight: 500;
    font-size: 1.1em;
}

.hidden {
    display: none;
}

/* Footer */
.site-footer {
    background-color: #0f0f0f;
    padding-top: 40px;
    border-top: 1px solid var(--color-dark-accent);
}

.site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}

.footer-block h4 {
    color: var(--color-heading);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px;
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

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

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

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    color: #888;
    border-top: 1px solid var(--color-dark-accent);
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0 24px;
    border-radius: 8px;
    border: 1px solid var(--color-dark-accent);
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

table {
    width: 100%;
    min-width: 640px; 
    border-collapse: separate;
    border-spacing: 0;
    color: var(--color-text);
    background-color: var(--color-card-bg);
    font-size: 15px;
}

thead th {
    position: sticky;
    top: 0;
    background: #121212;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
    padding: 14px 16px;
    border-bottom: 1px solid #2b2b2b;
}

tbody td, tbody th {
    padding: 14px 16px;
    border-bottom: 1px solid #2a2a2a;
    vertical-align: top;
}

tbody th,
tbody td:first-child {
    color: var(--color-secondary-gold);
    font-weight: 600;
    width: 38%;
}

tbody tr:nth-child(even) { background-color: rgba(255,255,255,0.02); }
tbody tr:hover {
    background-color: rgba(0, 240, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(0,240,255,0.12);
}

.table--compact thead th { padding: 10px 12px; }
.table--compact tbody td,
.table--compact tbody th { padding: 10px 12px; }

table caption {
    caption-side: top;
    text-align: left;
    color: var(--color-primary-glow);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 8px;
    font-weight: 600;
}

@media (max-width: 768px) {
    table { min-width: 560px; font-size: 14px; }
}

ul, ol {
    margin: 12px 0 18px 1.2rem;
}
li { margin: 6px 0; line-height: 1.6; }

.list-steps {
    list-style: none;
    margin-left: 0;
    counter-reset: step;
}
.list-steps > li {
    counter-increment: step;
    position: relative;
    padding-left: 2.2rem;
}
.list-steps > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    background: radial-gradient(80% 80% at 50% 50%, var(--color-primary-glow), #00a2ff);
    color: #000;
    box-shadow: 0 0 14px rgba(0,240,255,0.35);
}

.list-rhombus {
    list-style: none;
    margin-left: 0;
}
.list-rhombus > li {
    position: relative;
    padding-left: 1.4rem;
}
.list-rhombus > li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 0.85rem;
    color: var(--color-secondary-gold);
    line-height: 1;
}

.list-check {
    list-style: none;
    margin-left: 0;
}
.list-check > li {
    position: relative;
    padding-left: 1.6rem;
}
.list-check > li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    font-weight: 800;
    color: var(--color-primary-glow);
}

ul ul, ol ol, ul ol, ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 0.95em;
    opacity: 0.95;
}

dl {
    margin: 14px 0 20px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-dark-accent);
    border-radius: 8px;
    padding: 14px 16px;
}
dt {
    color: var(--color-secondary-gold);
    font-weight: 700;
    margin-top: 8px;
}
dd {
    margin-left: 0;
    padding-left: 0;
    border-left: 2px solid #2a2a2a;
    margin-bottom: 8px;
    padding-left: 10px;
}

.note {
    font-size: 0.92em;
    opacity: 0.9;
    border-left: 3px solid var(--color-primary-glow);
    padding: 8px 12px;
    background: #131313;
    border-radius: 6px;
    margin: 10px 0 18px;
}

/* =========================
   Styled Ordered & Unordered Lists
   ========================= */

main ol,
main ul {
    margin: 18px 0 24px;
    padding-left: 1.6rem;
    line-height: 1.7;
    text-align: left; 
}

/* -------- Ordered (ol) -------- */
main ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}
main ol > li {
    counter-increment: item;
    position: relative;
    margin-bottom: 10px;
    padding-left: 2.2rem;
    font-size: 1rem;
    color: var(--color-text);
}
main ol > li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary-glow);
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* -------- Unordered (ul) -------- */
main ul {
    list-style: none;
    padding-left: 0;
}
main ul > li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 8px;
    font-size: 1rem;
}

main ul > li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.8rem;
    color: var(--color-secondary-gold);
    text-shadow: 0 0 6px rgba(212, 177, 78, 0.4);
}

main ul ul,
main ol ol {
    margin-top: 6px;
    margin-bottom: 6px;
    opacity: 0.9;
    font-size: 0.95em;
}
main ul ul > li::before {
    content: "•";
    color: var(--color-text);
}

/* -------- Variants -------- */

main .list-steps {
    list-style: none;
    margin-left: 0;
    counter-reset: step;
    padding-left: 0;
}
main .list-steps > li {
    counter-increment: step;
    position: relative;
    padding-left: 2.2rem;
}
main .list-steps > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    background: radial-gradient(80% 80% at 50% 50%, var(--color-primary-glow), #00a2ff);
    color: #000;
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.35);
}

main .list-check {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
main .list-check > li {
    position: relative;
    padding-left: 1.6rem;
}
main .list-check > li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    font-weight: 800;
    color: var(--color-primary-glow);
}

.payments img.si {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.payments img.si:hover {
    opacity: 1;
    transform: scale(1.05);
}

.payments .badge-bg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1;
}

.payments .badge-text {
    fill: #ffffff;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

main h1, 
main h2, 
main h3, 
main h4 {
    margin-top: 40px;     
    margin-bottom: 20px;  
    line-height: 1.3;
}

main p {
    margin-bottom: 18px;  
    line-height: 1.8;       
}

main h1 + p,
main h2 + p,
main h3 + p {
    margin-top: 10px;
}

main section {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    main ol > li,
    main ul > li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
    }
}

@media (max-width: 768px) {
    .auth-nav {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }

    .site-footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logos-container {
        justify-content: center;
    }
}