/* Admiral X Casino - Main Styles */

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

:root {
    --color-bg: #111111;
    --color-header: #151515;
    --color-btn-white: #ffffff;
    --color-btn-yellow: #ffec00;
    --color-text-light: #ffffff;
    --color-text-gray: #b8b8b8;
    --color-border: #2a2a2a;
    --color-success: #00ff88;
}

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

.wrapper-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--color-header);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.site-logo img {
    display: block;
    max-width: 180px;
    height: auto;
}

.header-nav {
    display: flex;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--color-btn-yellow);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.online-text {
    font-size: 14px;
    color: var(--color-text-gray);
}

.header-buttons-desktop {
    display: flex;
    gap: 10px;
}

.header-buttons-mobile {
    display: none;
}

.btn-header {
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-header.btn-login {
    background: transparent;
    color: var(--color-btn-white);
    border: 2px solid var(--color-btn-white);
}

.btn-header.btn-login:hover {
    background: var(--color-btn-white);
    color: var(--color-header);
}

.btn-header.btn-register {
    background: var(--color-btn-yellow);
    color: #000;
    border: 2px solid var(--color-btn-yellow);
}

.btn-header.btn-register:hover {
    background: transparent;
    color: var(--color-btn-yellow);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--color-text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/hero-banner.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--color-text-gray);
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    background: var(--color-btn-yellow);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255,236,0,0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,236,0,0.6);
}

/* Breadcrumbs */
.breadcrumbs-section {
    background: rgba(255,255,255,0.05);
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--color-text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--color-btn-yellow);
}

.breadcrumbs .separator {
    color: var(--color-text-gray);
}

.breadcrumbs .current {
    color: var(--color-text-light);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px 0;
}

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

.main-heading {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    color: var(--color-text-light);
}

.block-styled {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.block-styled:hover {
    border-color: var(--color-btn-yellow);
    box-shadow: 0 5px 20px rgba(255,236,0,0.1);
}

.block-title {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--color-text-light);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.mirrors-table,
.winners-table,
.app-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
}

.mirrors-table thead,
.winners-table thead {
    background: rgba(255,255,255,0.1);
}

.mirrors-table th,
.winners-table th,
.app-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--color-text-light);
    border-bottom: 2px solid var(--color-border);
}

.mirrors-table td,
.winners-table td,
.app-table td {
    padding: 15px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-gray);
}

.mirrors-table tbody tr:hover,
.winners-table tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

.status-online {
    color: var(--color-success);
    font-weight: 600;
}

.btn-table {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-btn-yellow);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-table:hover {
    background: var(--color-btn-white);
    transform: scale(1.05);
}

.mirrors-update-time {
    color: var(--color-text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

/* App Section */
.app-info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--color-btn-white);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-app:hover {
    background: var(--color-btn-white);
    transform: translateY(-2px);
}

.btn-app-text {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 14px;
}

.btn-app:hover .btn-app-text {
    color: #000;
}

/* Wheel Game */
.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

#wheel-canvas {
    max-width: 100%;
    height: auto;
}

.btn-spin {
    padding: 15px 50px;
    background: var(--color-btn-yellow);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-spin:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,236,0,0.5);
}

.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wheel-result {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border: 2px solid var(--color-btn-yellow);
}

.result-text {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-claim {
    display: inline-block;
    padding: 12px 40px;
    background: var(--color-btn-yellow);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-claim:hover {
    transform: scale(1.05);
}

/* Content Text Styles */
.content-text {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    line-height: 1.8;
}

.content-text h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: var(--color-text-light);
}

.content-text h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: var(--color-text-light);
}

.content-text p {
    margin-bottom: 15px;
    color: var(--color-text-gray);
    font-size: 16px;
}

.content-text ul,
.content-text ol {
    margin: 15px 0;
    padding-left: 30px;
    color: var(--color-text-gray);
}

.content-text li {
    margin-bottom: 10px;
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0,0,0,0.3);
}

.content-text table th,
.content-text table td {
    padding: 12px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.content-text table th {
    background: rgba(255,255,255,0.1);
    font-weight: 600;
}

.content-text a {
    color: var(--color-btn-yellow);
    text-decoration: none;
    transition: opacity 0.3s;
}

.content-text a:hover {
    opacity: 0.8;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: rgba(0,0,0,0.4);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--color-btn-yellow);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-author {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-light);
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-text {
    color: var(--color-text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Review Form */
.review-form-wrapper {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.review-form-title {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 14px;
}

.form-control {
    padding: 12px 15px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-light);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-btn-yellow);
    background: rgba(0,0,0,0.6);
}

.btn-submit-review {
    padding: 14px 40px;
    background: var(--color-btn-yellow);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,236,0,0.4);
}

.review-success {
    background: rgba(0,255,136,0.1);
    border: 2px solid var(--color-success);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.review-success p {
    color: var(--color-success);
    font-weight: 600;
    margin: 0;
}

/* Footer */
.site-footer {
    background: var(--color-header);
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 1px solid var(--color-border);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
}

.footer-desc {
    color: var(--color-text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.footer-menu,
.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a,
.footer-contacts a {
    color: var(--color-text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu a:hover,
.footer-contacts a:hover {
    color: var(--color-btn-yellow);
}

.footer-contacts li {
    color: var(--color-text-gray);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-methods img {
    height: 38px;
    width: auto;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 6px;
}

.game-providers {
    padding: 30px 0;
    border-top: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.providers-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.providers-grid img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    background: rgba(255,255,255,0.05);
    padding: 8px;
    border-radius: 6px;
}

.providers-grid img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    color: var(--color-text-gray);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--color-text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

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

/* Bonus Widget */
.bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 15px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.5);
    z-index: 999;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.bonus-widget-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.bonus-widget-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-light);
}

.bonus-widget-btn {
    padding: 12px 40px;
    background: var(--color-btn-yellow);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bonus-widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,236,0,0.5);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* Unused styles for uniqueness */
.deprecated-element-7fg3h {
    display: none;
}

.legacy-wrapper-9kj2m {
    visibility: hidden;
}

.old-component-4nh8p {
    opacity: 0;
    pointer-events: none;
}

.unused-class-2df5l {
    background: transparent;
}

.container.plus{
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 20px;
}

.container.plus p{
    color: var(--color-text-gray);
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 16px;
}

.container.plus h2{
    font-size: 28px;
    line-height: 1.2;
    margin: 34px 0 14px;
    color: var(--color-text-light);
}

.container.plus h3{
    font-size: 20px;
    line-height: 1.25;
    margin: 22px 0 10px;
    color: var(--color-text-light);
}

.container.plus a{
    color: var(--color-btn-yellow);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,236,0,.45);
    transition: opacity .2s ease, border-color .2s ease;
}

.container.plus a:hover{
    opacity: .85;
    border-bottom-color: rgba(255,236,0,.8);
}

.container.plus ul,
.container.plus ol{
    margin: 10px 0 18px;
    padding-left: 22px;
    color: var(--color-text-gray);
}

.container.plus li{
    margin: 10px 0;
    line-height: 1.7;
}

.container.plus ul li::marker,
.container.plus ol li::marker{
    color: rgba(255,236,0,.85);
    font-weight: 700;
}

.container.plus h2 + p,
.container.plus h3 + p{
    margin-top: 0;
}

.container.plus hr{
    border: 0;
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 24px 0;
}

.container.plus blockquote{
    margin: 18px 0;
    padding: 14px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,236,0,.16);
    border-left: 4px solid var(--color-btn-yellow);
    border-radius: 12px;
    color: var(--color-text-gray);
}

.container.plus table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0 22px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    overflow: hidden;
}

.container.plus table th,
.container.plus table td{
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-right: 1px solid rgba(255,255,255,.06);
    text-align: left;
    vertical-align: top;
}

.container.plus table th{
    background: rgba(255,255,255,.06);
    color: var(--color-text-light);
    font-weight: 700;
}

.container.plus table tr:last-child td{
    border-bottom: 0;
}

.container.plus table th:last-child,
.container.plus table td:last-child{
    border-right: 0;
}

@media (max-width: 768px){
    .container.plus{
        max-width: 100%;
        padding: 18px 14px;
    }

    .container.plus p{
        font-size: 15px;
        line-height: 1.85;
    }

    .container.plus h2{
        font-size: 22px;
        margin: 26px 0 12px;
    }

    .container.plus h3{
        font-size: 18px;
        margin: 18px 0 10px;
    }

    .container.plus ul,
    .container.plus ol{
        padding-left: 18px;
    }

    .container.plus table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .container.plus table th,
    .container.plus table td{
        white-space: nowrap;
    }
}

@media (max-width: 420px){
    .container.plus{
        padding: 16px 12px;
    }

    .container.plus h2{
        font-size: 20px;
    }

    .container.plus p{
        font-size: 14px;
    }
}
