@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0c0e14;
    --bg-secondary: #12151e;
    --bg-card: #161923;
    --bg-card-hover: #1a1e2c;
    --bg-surface: #1e2230;
    --text-primary: #e2dfd5;
    --text-secondary: #8a8899;
    --text-accent: #d4a853;
    --text-accent-light: #f0d080;
    --gold: #d4a853;
    --gold-dark: #a07830;
    --gold-light: #f0d080;
    --border-main: #2a2e3a;
    --border-gold: rgba(212, 168, 83, 0.25);
    --red: #c0392b;
    --green: #27ae60;
    --blue: #2980b9;
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 168, 83, 0.1);
    --radius: 8px;
    --radius-lg: 14px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    min-width: 0;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

a:hover {
    color: var(--gold-light);
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', 'Georgia', serif;
    color: var(--text-accent);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.9rem;
}

p {
    margin-bottom: 12px;
}

.col {
    color: var(--red);
}

.col-1 {
    color: var(--text-primary);
}

.col-2 {
    color: var(--text-secondary);
}

.bold {
    font-weight: 700;
}

.dis-block {
    display: block;
}

.dis-inblock {
    display: inline-block;
}

.clear {
    clear: both;
}

/* ===== LAYOUT ===== */
.main {
    width: 100%;
    min-height: 100vh;
    background: var(--bg-primary);
    position: relative;
}

.main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(212, 168, 83, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 168, 83, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ===== HERO SLIDER ===== */
#slide {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    z-index: 1;
}

#slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.slider {
    position: relative;
}

.slider .items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider .items li {
    position: relative;
}

.slider .items li img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.1);
}

.banner {
    position: absolute;
    z-index: 3;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 24px 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
}

.banner span {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.banner strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold) !important;
    letter-spacing: 4px;
}

.banner strong font {
    color: var(--gold) !important;
}

.banner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 8px;
    margin-bottom: 0;
}

.button-banner {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0c0e14 !important;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.button-banner:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: rgba(212, 168, 83, 0.2);
    border-color: var(--gold);
}

/* ===== TOP HEADER BAR ===== */
.head {
    width: 100%;
    position: relative;
    z-index: 10;
}

.top-head {
    margin: 0;
}

header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.over-header {
    background: rgba(12, 14, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-main);
    padding: 0 20px;
}

.over-header .pages {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 0;
    list-style: none;
    flex-wrap: wrap;
    width: auto;
    float: none;
    margin: 0;
}

.over-header .pages li {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 14px 0 0;
    float: none;
    line-height: 1;
}

.over-header .pages li a {
    color: var(--text-secondary);
    transition: var(--transition);
    padding: 4px 0;
}

.over-header .pages li a:hover {
    color: var(--gold);
}

.over-header .pages li a span {
    color: inherit !important;
}

.over-header .pages li a font {
    color: inherit !important;
}

/* ===== MAIN NAVIGATION ===== */
.nav-logo {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border-bottom: 2px solid var(--border-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo,
.logoDS {
    padding: 10px 0;
    width: auto;
    height: auto;
    float: left;
}

.logo li,
.logoDS li {
    list-style: none;
}

.logo img,
.logoDS img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 168, 83, 0.3));
    transition: var(--transition);
}

.logo img:hover,
.logoDS img:hover {
    filter: drop-shadow(0 0 15px rgba(212, 168, 83, 0.5));
    transform: scale(1.05);
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* SF Menu Override */
.sf-menu {
    display: flex !important;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.sf-menu>li {
    position: relative;
    float: none !important;
    display: inline-flex !important;
}

.sf-menu>li>a {
    display: block;
    padding: 14px 16px;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.sf-menu>li>a font {
    color: var(--gold-light) !important;
}

.sf-menu>li>a:hover,
.sf-menu>li.current>a {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
    background: rgba(212, 168, 83, 0.05);
}

/* Dropdown Menus */
.sf-menu ul {
    position: absolute !important;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    list-style: none;
    padding: 6px 0;
}

.sf-menu ul li {
    display: block !important;
    float: none !important;
}

.sf-menu ul li a {
    display: block;
    padding: 10px 18px;
    font-size: 0.82rem;
    color: var(--text-secondary) !important;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sf-menu ul li a:hover {
    color: var(--gold) !important;
    background: rgba(212, 168, 83, 0.06);
    border-left-color: var(--gold);
}

/* ===== MAIN CONTENT AREA ===== */
#content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.top-content {
    margin-top: 0;
}

.main-block,
.main-block-1 {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    width: auto;
}

/* ===== TABS SECTION ===== */
.main-tabs {
    max-width: 1200px;
    margin: 30px auto;
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: auto;
}

.inner {
    padding: 30px;
    background: none;
}

.div-nav {
    margin-bottom: 20px;
}

.div-nav .nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border-main);
    padding-bottom: 0;
}

.div-nav .nav li a {
    display: block;
    padding: 12px 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.div-nav .nav li.selected a,
.div-nav .nav li a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Vocation Grid */
.tab-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.tab-content .grid_3 {
    width: calc(25% - 15px);
    float: none;
    margin: 0 !important;
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.tab-content .grid_3:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.inner-1 {
    width: 100% !important;
    height: 160px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.inner-1 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.inner-1:hover img {
    transform: scale(1.05);
}

.inner-1 strong {
    display: none;
}

.tab-content .bold {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.tab-content .col-1 {
    font-size: 0.78rem;
    color: var(--text-secondary) !important;
    margin-bottom: 8px;
}

.link-a {
    font-size: 0.82rem;
    color: var(--text-secondary) !important;
    line-height: 1.5;
}

.link-a .link,
.link-3 {
    display: none;
}

/* ===== LOGIN FORM (MODAL) ===== */
.modal-content {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-main) !important;
    border-radius: var(--radius-lg) !important;
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid var(--border-main) !important;
    padding: 16px 20px !important;
}

.modal-footer {
    border-top: 1px solid var(--border-main) !important;
    padding: 16px 20px !important;
}

.modal-body {
    padding: 20px !important;
}

.form-control {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-main) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius) !important;
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15) !important;
    outline: none !important;
}

.form-control::placeholder {
    color: var(--text-secondary) !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    border: none !important;
    color: #0c0e14 !important;
    font-weight: 600 !important;
    border-radius: var(--radius) !important;
    padding: 10px 20px !important;
    text-transform: uppercase;
    font-size: 0.82rem !important;
    letter-spacing: 0.5px;
    transition: var(--transition) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3) !important;
}

.btn-default {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-main) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius) !important;
    padding: 10px 20px !important;
    transition: var(--transition) !important;
}

.btn-default:hover {
    background: var(--bg-card-hover) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0c0e14;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.button:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0c0e14;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

input[type=submit] {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0c0e14;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

input[type=submit]:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

/* ===== SEARCH ===== */
.div-search {
    display: none;
}

/* ===== TABLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th {
    background: var(--bg-surface);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 2px solid var(--border-gold);
}

table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-main);
    color: var(--text-primary);
    font-size: 0.88rem;
}

table tr:hover td {
    background: rgba(212, 168, 83, 0.03);
}

table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.15);
}

/* ===== LISTS ===== */
.list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-main);
    background: none;
}

.list li p {
    margin-top: 8px;
}

.list-1 {
    padding-left: 0;
}

.list-1 li {
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-main);
    background: none;
    white-space: normal;
    font-weight: 500;
    transition: var(--transition);
}

.list-1 li:hover {
    background: rgba(212, 168, 83, 0.03);
}

.list-1 li a {
    color: var(--text-secondary);
}

.list-1 li a:hover {
    color: var(--gold);
}

.list-1 li.current a {
    color: var(--gold);
}

/* ===== SIDEBAR PANELS ===== */
.bg-h2-1,
.bg-h2-2,
.bg-h2-3,
.bg-h2-4 {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, transparent 100%);
    padding: 14px 18px;
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    margin-bottom: 16px;
}

/* ===== FORMS ===== */
textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"] {
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    color: var(--text-primary);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-family: inherit;
    font-size: 0.9rem;
    width: 100%;
    transition: var(--transition);
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
    outline: none;
}

textarea#message {
    width: 100%;
}

#login-form input {
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    color: var(--text-primary);
    border-radius: var(--radius);
    padding: 10px 14px;
    width: 100%;
    font-size: 0.9rem;
}

.login-form {
    margin-top: 20px;
}

/* ===== FOOTER ===== */
footer {
    position: relative;
    z-index: 10;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-main);
    margin-top: 40px;
}

.main-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background: none;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.main-footer .col-md-4 {
    flex: 1;
    min-width: 250px;
}

footer .main-footer p {
    margin: 6px 0;
}

footer .main-footer p a {
    color: var(--text-secondary);
    margin-left: 0;
}

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

footer font {
    color: inherit !important;
}

footer font[color="red"] {
    color: var(--gold) !important;
}

footer font[color="#00FF00"] {
    color: var(--green) !important;
}

footer font[color="#FF0000"] {
    color: var(--red) !important;
}

footer font[color="orange"] {
    color: var(--gold-light) !important;
}

.main-footer .pages {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-main);
    margin: 0 0 16px 0;
    background: none;
}

.main-footer .pages li {
    float: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.main-footer .pages li a {
    color: var(--text-secondary);
}

.main-footer .pages li a:hover {
    color: var(--gold);
}

/* ===== DOWNLOAD AREA ===== */
.dload-area {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    position: relative;
}

/* ===== POPUP ===== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
    animation: popup-in 0.3s ease;
}

.popup-content h3 {
    color: var(--gold);
    margin-bottom: 16px;
}

.popup-content p,
.popup-content li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.popup-content font {
    color: var(--text-secondary) !important;
}

.popup-content font[color="red"] {
    color: var(--red) !important;
}

.popup-content font[color="black"] {
    color: var(--text-primary) !important;
}

.popup-content .highlight {
    color: var(--gold) !important;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
    background: var(--bg-surface);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    border: none;
    line-height: 1;
}

.close-btn:hover {
    color: var(--gold);
    background: rgba(212, 168, 83, 0.1);
}

.button-popup {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0c0e14 !important;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.button-popup:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-2px);
}

@keyframes popup-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== OVERRIDE FONT TAGS ===== */
font[color="red"] {
    color: var(--red) !important;
}

font[color="green"] {
    color: var(--green) !important;
}

font[color="blue"] {
    color: var(--blue) !important;
}

font[color="yellow"] {
    color: var(--gold-light) !important;
}

font[color="orange"] {
    color: var(--gold) !important;
}

font[color="black"] {
    color: var(--text-primary) !important;
}

font[color="white"] {
    color: var(--text-primary) !important;
}

/* ===== DROPDOWN (Bootstrap) ===== */
.dropdown-menu {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-main) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-lg) !important;
}

.dropdown-menu>li>a {
    color: var(--text-secondary) !important;
    padding: 10px 18px !important;
    transition: var(--transition) !important;
}

.dropdown-menu>li>a:hover {
    background: rgba(212, 168, 83, 0.06) !important;
    color: var(--gold) !important;
}

.divider {
    background: var(--border-main) !important;
}

/* ===== BOOTSTRAP CONTAINER OVERRIDE ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    margin: 0;
}

/* ===== CONTENT GENERAL STYLES ===== */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

hr {
    border: none;
    height: 1px;
    background: var(--border-main);
    margin: 20px 0;
}

strong {
    font-weight: 700;
}

li {
    color: var(--text-primary);
    margin-bottom: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .tab-content .grid_3 {
        width: calc(50% - 10px);
    }

    .nav-logo {
        flex-direction: column;
        padding: 10px 20px;
    }

    .sf-menu {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .banner span {
        font-size: 1.5rem;
    }

    .banner strong {
        font-size: 2rem;
    }

    .banner {
        padding: 16px 24px;
    }

    .tab-content .grid_3 {
        width: 100%;
    }

    .sf-menu>li>a {
        padding: 10px 10px;
        font-size: 0.75rem;
    }

    .main-footer {
        flex-direction: column;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-main);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(212, 168, 83, 0.3);
    color: var(--text-primary);
}

/* ===== GRID COMPATIBILITY ===== */
.grid_3 {
    width: 220px;
    float: left;
    margin: 0 10px;
}