/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;700;900&display=swap');

/* --- General Styles & Junior Mess --- */
body {
    font-family: 'Mulish', sans-serif;
    background-color: #19191b;
    color: #e2e1e0;
    line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: #ffffff;
}
a {
    color: #d6a054;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #e2e1e0;
    text-decoration: underline;
}
.section-padding-style-1 { padding: 60px 0; }
.section-padding-style-2 { padding: 60px 0; background-color: #0000001a; }
.section-title { margin-bottom: 40px; font-size: 2.5rem; }
.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}
.btn-login { background-color: #e2e1e0; color: #060606; }
.btn-login:hover { background-color: #fff; transform: translateY(-2px); }
.btn-register { background-color: #d6a054; color: #060606; border-color: #d6a054; }
.btn-register:hover { background-color: #c59043; transform: translateY(-2px); }
.btn-bonus { background: linear-gradient(45deg, #d6a054, #ffc107); color: #060606; border: none; }
.btn-bonus:hover { transform: scale(1.05); box-shadow: 0 0 15px #d6a054; }
.btn-accent { background-color: transparent; color: #e2e1e0; border-color: #e2e1e0; }
.btn-accent:hover { background-color: #e2e1e0; color: #060606; }

/* --- Header --- */
.header-main-area-d4f5 {
    background-color: #060606;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.logo-img-style { max-height: 50px; }
.navbar-dark .navbar-nav .nav-link {
    color: #e2e1e0;
    font-weight: 700;
    margin: 0 15px;
    transition: color 0.3s;
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
    color: #d6a054;
}
.online-counter-widget { color: #e2e1e0; }
.online-counter-widget i { color: #d6a054; }

/* --- Hero & Wheel of Fortune --- */
.hero-section-wrapper {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}
.hero-background {
    background: url('/banner.webp') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.2;
}
.hero-title-text { font-size: 3.5rem; font-weight: 900; }
.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: auto;
}
.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.sector {
    position: absolute;
    width: 50%;
    height: 50%;
    background: var(--clr);
    transform-origin: bottom right;
    transform: rotate(calc(45deg * var(--i)));
    clip-path: polygon(0 0, 55% 0, 100% 100%, 0 55%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.sector span {
    transform: rotate(45deg);
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}
.spin-btn-container {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.spin-btn-container::before {
    content: '';
    position: absolute;
    top: -15px;
    width: 20px;
    height: 30px;
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.spin-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #d6a054;
    color: #060606;
    font-weight: bold;
    cursor: pointer;
}
.bonus-popup-container {
    background: rgba(0,0,0,0.8);
    border: 2px solid #d6a054;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- Advantages --- */
.advantage-card-item-k4j2 {
    background: #2a2a2e;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.advantage-card-item-k4j2:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.advantage-card-item-k4j2 .icon-wrapper {
    font-size: 3rem;
    color: #d6a054;
    margin-bottom: 15px;
}

/* --- Jackpots & Winners --- */
.jackpot-block-container-p5l0, .winners-block-container-q1m9 {
    background: #2a2a2e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
}
.jackpot-amount-display {
    font-size: 3.5rem;
    font-weight: 900;
    color: #d6a054;
    text-shadow: 0 0 10px #d6a054;
    margin: 10px 0;
}
.winners-table {
    color: #e2e1e0;
    margin-top: 15px;
}
.winners-table thead {
    color: #d6a054;
    border-bottom: 2px solid #d6a054;
}
.winners-table td, .winners-table th {
    background: transparent !important;
    color: inherit;
    border: none;
    text-align: left;
    padding: 0.5rem 1rem;
}
.winners-table tbody tr:nth-child(odd) {
    background-color: rgba(255,255,255,0.05) !important;
}

/* --- Bonuses & Games --- */
.bonus-card-item-b8n3 {
    background: #2a2a2e;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}
.bonus-card-item-b8n3:hover { transform: scale(1.05); }
.bonus-card-item-b8n3 .icon-wrapper { font-size: 2.5rem; color: #d6a054; margin-bottom: 10px; }
.game-card-item-g2f7 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.game-card-item-g2f7 img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.game-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.game-card-item-g2f7:hover .game-card-overlay { opacity: 1; }
.game-card-item-g2f7:hover img { transform: scale(1.1); }
.game-card-overlay h5 { color: #fff; }

/* --- Content Section --- */
.content-wrapper-box-s9d4 {
    background: #2a2a2e;
    padding: 40px;
    border-radius: 15px;
}
.h1-style { font-size: 2.2rem; margin-bottom: 20px; }
.text-content-styling p { margin-bottom: 1rem; }
.text-content-styling ul, .text-content-styling ol { padding-left: 2rem; margin-bottom: 1rem; }
.text-content-styling li { margin-bottom: 0.5rem; }
.text-content-styling table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}
.text-content-styling th, .text-content-styling td {
    padding: 0.75rem;
    border: 1px solid #444;
    text-align: left;
}
.text-content-styling th { background-color: #333; }
.text-content-styling blockquote {
    border-left: 4px solid #d6a054;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #ccc;
}

/* --- FAQ --- */
.accordion-item {
    background-color: #2a2a2e;
    border: 1px solid #444;
    margin-bottom: 10px;
    border-radius: 10px !important;
}
.accordion-button {
    background-color: #2a2a2e;
    color: #fff;
    font-weight: 700;
    border-radius: 10px !important;
}
.accordion-button:not(.collapsed) {
    color: #d6a054;
    background-color: #333;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.1);
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d6a054'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body { color: #e2e1e0; }

/* --- Footer --- */
.footer-main-area-g6h7 {
    background-color: #060606;
    padding: 50px 0 30px;
    color: #aaa;
}
.footer-logo-style { max-height: 40px; opacity: 0.8; }
.footer-main-area-g6h7 h5 { color: #fff; margin-bottom: 15px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #aaa; }
.footer-links a:hover { color: #d6a054; text-decoration: none; }
.legal-text-block-f2k1 {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.8rem;
    text-align: center;
}

/* --- Sticky Widget --- */
.sticky-widget-container-x1v8 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, #d6a054, #ffc107);
    color: #060606;
    padding: 15px 0;
    z-index: 999;
    text-align: center;
    font-weight: 700;
    animation: slideUp 0.5s ease-out;
}
.sticky-widget-container-x1v8 a { text-decoration: none; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* --- Unused styles for obfuscation --- */
.elementor-section {}
.wp-block-button__link { display: none; }
.yoast-seo-snippet { visibility: hidden; }
