/*=======================================================================
  Akdeniz Airsoft Custom Styles
  Author: Akdeniz Airsoft
  Version: 1.1
=========================================================================*/

/* =========================================
   [00] CONTAINER & LAYOUT OVERRIDES
========================================= */
@media (min-width: 1200px) {
    .container {
        max-width: 1440px;
        width: 100%;
    }
}

@media (min-width: 1500px) {
    .container {
        width: 1440px;
    }
}

/* =========================================
   [01] GLOBAL STYLES
========================================= */
/* Font Override - Turkish Character Support */
body,
html,
p, span, div, a, li, td, th,
input, textarea, select, button,
.form-control, .btn {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.heading, .title,
.mainNav ul li a,
.header h1, .header h2, .header h3, .header h4, .header h5, .header h6,
.widgetTitle, .pageTitle h2,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Oswald', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Turkish Character Support for Headings */
.titleHead h1,
.sectionTitle h1 {
    color: #c0392b !important;
    font-family: 'Inter', 'Oswald', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 32px !important;
    margin-bottom: 5px !important;
    letter-spacing: 1px !important;
}

/* Make h2 in titleHead and sectionTitle red as well */
.titleHead h2.color_gray,
.sectionTitle h2.color_gray {
    color: #c0392b !important;
}

h2.color_gray,
.titleHead h2,
.sectionTitle h2,
h2 {
    font-family: 'Inter', 'Oswald', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mainNav ul li { 
    margin: 0 10px !important; 
}

.header-info-text {
    font-size: 20px;
}

.header-auth-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-bg {
    background-image: url('https://cdn.akdenizairsoft.com/assets/images/slider/s11.jpg');
}

/* =========================================
   [01.1] HEADER ALWAYS VISIBLE
========================================= */
.header.isFixed,
.header.isSticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background-color: rgba(17, 17, 17, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Add padding to body when header is fixed */
body.has-fixed-header {
    padding-top: 80px;
}

/* Hide the headerTop section on scroll - we keep header always visible */
.headerTop {
    display: none;
}

/* Slider section adjustment */
.slider1 {
    margin-top: 0;
}

/* Page title section for non-home pages */
.pageTitle {
    margin-top: 0;
}

/* =========================================
   [01.2] HEADER RIGHT SECTION
========================================= */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    height: 100%;
}

.header-row {
    display: flex;
    align-items: center;
}

/* =========================================
   [01.3] HAMBURGER MENU
========================================= */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
}

.hamburger-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu:hover span {
    background-color: #c0392b;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   [01.4] MOBILE NAVIGATION DROPDOWN
========================================= */
.mobile-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 8999;
}

.mobile-nav-dropdown.active {
    display: block;
}

.mobile-nav-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-dropdown ul li {
    border-bottom: 1px solid #333;
}

.mobile-nav-dropdown ul li:last-child {
    border-bottom: none;
}

.mobile-nav-dropdown ul li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mobile-nav-dropdown ul li a:hover {
    background-color: #c0392b;
    color: #fff;
}

/* =========================================
   [01.5] RESPONSIVE STYLES
========================================= */
@media (max-width: 991px) {
    .hamburger-menu {
        display: block !important;
    }
    
    .header .logo img {
        max-height: 45px;
    }
    
    .header-auth-buttons .btn .btn-text {
        display: none;
    }
    
    .header-auth-buttons .btn {
        padding: 8px 12px;
    }
    
    .header-auth-buttons .btn i {
        margin: 0;
    }
}

@media (max-width: 767px) {
    body.has-fixed-header {
        padding-top: 65px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header .logo img {
        max-height: 38px;
    }
    
    .header-auth-buttons {
        gap: 5px;
    }
    
    .header-auth-buttons .btn {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .hamburger-menu {
        padding: 6px;
    }
    
    .hamburger-menu span {
        width: 20px;
        margin: 4px 0;
    }
}

@media (max-width: 480px) {
    body.has-fixed-header {
        padding-top: 60px;
    }
    
    .header .logo img {
        max-height: 32px;
    }
    
    .header-auth-buttons .btn {
        padding: 5px 8px;
        font-size: 12px;
    }
}

/* =========================================
   [02] PANELS & CARDS
========================================= */
.panel-dark {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.panel-dark-lg {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

.panel-heading-primary {
    background-color: #c0392b;
    color: #fff;
    padding: 15px 20px;
}

.panel-heading-primary-lg {
    background-color: #c0392b;
    color: #fff;
    padding: 20px;
}

.panel-heading-dark {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
}

.panel-body-dark {
    padding: 20px;
    color: #ddd;
}

.panel-body-dark-lg {
    padding: 25px;
    color: #ddd;
}

.panel-title-lg {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.panel-title-md {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.panel-title-sm {
    margin: 0;
    font-size: 16px;
}

.panel-subtitle {
    margin: 10px 0 0;
    opacity: 0.9;
}

.panel-default {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-default:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* =========================================
   [03] POLL STYLES
========================================= */
.pollsList {
    padding: 80px 0;
}

.pollDetail {
    padding: 80px 0;
}

.poll-option {
    background-color: #2c2c2c;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.poll-option:hover {
    background-color: #333 !important;
}

.poll-option-lg {
    background-color: #2c2c2c;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.poll-option-lg.voted {
    border-color: #c0392b;
    background-color: rgba(192, 57, 43, 0.1) !important;
}

.poll-option-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(192, 57, 43, 0.3);
    transition: width 0.5s ease;
}

.poll-option-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poll-option-label {
    display: flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}

.poll-option-input {
    margin-right: 12px;
    transform: scale(1.3);
}

.poll-option-text {
    color: #fff;
}

.poll-option-check {
    margin-left: 8px;
    color: #27ae60;
}

.poll-option-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.poll-option-percentage {
    color: #888;
    font-size: 14px;
    min-width: 45px;
    text-align: right;
}

.poll-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poll-stats {
    color: #888;
    font-size: 13px;
}

.poll-stats-item {
    margin-left: 15px;
}

.poll-description {
    margin-bottom: 15px;
    color: #aaa;
}

.poll-description-lg {
    margin-bottom: 25px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
}

.poll-match-date {
    opacity: 0.8;
}

/* =========================================
   [04] BADGE STYLES
========================================= */
.badge-primary {
    background-color: #c0392b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
}

.badge-primary-lg {
    background-color: #c0392b;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* =========================================
   [05] ALERT STYLES
========================================= */
.alert-success-custom {
    background-color: #27ae60;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-error-custom {
    background-color: #c0392b;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-info-custom {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.alert-locked {
    background-color: #333;
    color: #888;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.alert-login-required {
    background-color: #333;
    color: #ddd;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
}

.alert-empty {
    background-color: #2c2c2c;
    color: #aaa;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.alert-icon-lg {
    margin-bottom: 10px;
}

.alert-text {
    margin: 0;
    font-size: 16px;
}

.alert-text-sm {
    margin: 0;
}

.alert-text-mb {
    margin-bottom: 15px;
}

/* =========================================
   [06] INFO LIST STYLES
========================================= */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list-item {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.info-list-item:last-child {
    border-bottom: none;
}

.info-list-item-sm {
    padding: 8px 0;
}

.info-list-icon {
    width: 20px;
    color: #c0392b;
}

.info-list-label {
    color: #ddd;
}

.info-list-value {
    float: right;
}

.info-title {
    color: #ddd;
    margin-bottom: 15px;
}

/* =========================================
   [07] BUTTON STYLES
========================================= */
.btn-danger {
    background-color: #c0392b;
    border-color: #a93226;
}

.btn-danger:hover {
    background-color: #a93226;
    border-color: #922b21;
}

.btn-submit {
    padding: 12px 30px;
}

.btn-block-custom {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
}

/* =========================================
   [08] AUTH STYLES
========================================= */
.authSection {
    padding: 40px 0 80px;
}

.authBox {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px;
    margin: 50px 0;
}

.authHeader {
    text-align: center;
    margin-bottom: 30px;
}

.authHeader img {
    max-width: 150px;
    margin-bottom: 20px;
}

.authHeader h3 {
    color: #fff;
    margin: 0;
}

.authHeader p {
    color: #888;
    margin-top: 10px;
}

.authFooter {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.authFooter p {
    color: #888;
    margin: 0;
}

.authFooter a {
    color: #c0392b;
    text-decoration: none;
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom-lg {
    margin-bottom: 25px;
}

.form-label {
    color: #ddd;
    margin-bottom: 8px;
    display: block;
}

.form-input {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    width: 100%;
}

.form-input:focus {
    background-color: #333 !important;
    border-color: #c0392b !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.2);
}

.form-control:focus {
    background-color: #2c2c2c !important;
    border-color: #c0392b !important;
    outline: none;
    box-shadow: none !important;
}

.form-checkbox-label {
    color: #aaa;
    cursor: pointer;
}

.form-checkbox {
    margin-right: 8px;
}

/* Input with Icon */
.input-icon {
    position: relative;
    display: block;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
    z-index: 10;
    pointer-events: none;
    line-height: 1;
}

.input-icon input,
.input-icon .form-control {
    padding-left: 40px !important;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Form Inline Items */
.form-inline-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaa;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-link {
    color: #c0392b;
    font-size: 13px;
    text-decoration: none;
}

.forgot-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

/* Form Help Text */
.form-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* Turnstile Container */
.turnstile-container {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.turnstile-error {
    border: 2px solid #c0392b;
    border-radius: 4px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Form Validation */
.is-invalid {
    border-color: #c0392b !important;
}

.invalid-feedback {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

/* Auth Modal Specific */
.auth-modal .modal-content {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
}

.auth-modal .modal-header {
    background-color: #222;
    border-bottom: 1px solid #333;
    border-radius: 12px 12px 0 0;
    padding: 15px 20px;
}

.auth-modal .modal-header .close {
    color: #fff;
    opacity: 0.7;
    font-size: 28px;
    margin-top: -5px;
}

.auth-modal .modal-header .close:hover {
    opacity: 1;
}

.auth-modal .modal-title {
    color: #fff;
    font-weight: 600;
}

.auth-modal .modal-body {
    padding: 25px 30px 30px;
}

.auth-modal .logo-modal {
    text-align: center;
    margin-bottom: 20px;
}

.auth-modal .logo-modal img {
    max-width: 120px;
}

.auth-modal .modal-description {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-modal .form-group {
    margin-bottom: 18px;
}

.auth-modal .form-group label {
    color: #ddd;
    margin-bottom: 6px;
    font-size: 14px;
    display: block;
}

.auth-modal .form-control {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.auth-modal .form-control:focus {
    background-color: #2c2c2c;
    border-color: #c0392b;
    outline: none;
    box-shadow: none;
}

.auth-modal .form-control::placeholder {
    color: #666;
}

/* Fix autofill styles */
.auth-modal .form-control:-webkit-autofill,
.auth-modal .form-control:-webkit-autofill:hover,
.auth-modal .form-control:-webkit-autofill:focus,
.auth-modal .form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #2c2c2c inset !important;
    -webkit-text-fill-color: #fff !important;
    background-color: #2c2c2c !important;
    background-clip: padding-box !important;
    border: 1px solid #444 !important;
}

.auth-modal .form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #2c2c2c inset !important;
    border-color: #c0392b !important;
}

.auth-modal .btn-primary {
    background-color: #c0392b;
    border: none;
    color: #fff;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-modal .btn-primary:hover {
    background-color: #a93226;
}

.auth-modal .btn-primary:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.auth-modal .auth-switch {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.auth-modal .auth-switch span {
    color: #888;
    font-size: 14px;
}

.auth-modal .auth-switch a {
    color: #c0392b;
    text-decoration: none;
    font-weight: 500;
}

.auth-modal .auth-switch a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.auth-modal .alert {
    margin-bottom: 20px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
}

.auth-modal .alert-danger {
    background-color: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.3);
    color: #e74c3c;
}

.auth-modal .alert-danger ul {
    margin: 0;
    padding-left: 18px;
}

.auth-modal .alert-danger li {
    margin-bottom: 3px;
}

.auth-modal .alert-danger li:last-child {
    margin-bottom: 0;
}

.auth-modal .alert-success {
    background-color: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

/* Auth Card (standalone pages) */
.auth-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
}

.auth-card-header {
    background-color: #222;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.auth-card-header i {
    font-size: 48px;
    color: #c0392b;
    margin-bottom: 15px;
}

.auth-card-header h3 {
    color: #fff;
    margin: 0 0 10px;
    font-weight: 600;
}

.auth-card-header p {
    color: #888;
    margin: 0;
    font-size: 14px;
}

.auth-card-body {
    padding: 30px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.auth-footer p {
    color: #888;
    margin: 5px 0;
    font-size: 14px;
}

.auth-footer a {
    color: #c0392b;
    text-decoration: none;
}

.auth-footer a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

/* =========================================
   [08.1] NOTIFICATION SYSTEM
========================================= */
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    max-width: 400px;
    width: auto;
    pointer-events: none;
}

.notification-container > .notification {
    pointer-events: auto;
}

.notification {
    background-color: #1a1a1a;
    border-left: 4px solid;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(420px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.notification > * {
    display: block;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.hide {
    animation: slideOutRight 0.3s ease-in forwards;
}

.notification-success {
    border-left-color: #27ae60;
    background-color: #1a2a1a;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.notification-success .notification-icon {
    color: #27ae60;
}

.notification-success .notification-title {
    color: #fff;
}

.notification-success .notification-message {
    color: #ddd;
}

.notification-error {
    border-left-color: #e74c3c;
    background-color: #2a1a1a;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.notification-error .notification-icon {
    color: #e74c3c;
}

.notification-error .notification-title {
    color: #fff;
}

.notification-error .notification-message {
    color: #ddd;
}

.notification-warning {
    border-left-color: #f39c12;
    background-color: rgba(243, 156, 18, 0.1);
}

.notification-warning .notification-icon {
    color: #f39c12;
}

.notification-info {
    border-left-color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
}

.notification-info .notification-icon {
    color: #3498db;
}

.notification-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.notification-icon {
    font-size: 20px;
    line-height: 1;
    display: block;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-items: flex-start;
    justify-content: center;
}

.notification-title {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.notification-message {
    color: #ddd;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
}

.notification-close {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #fff;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

@media (max-width: 480px) {
    .notification-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        padding: 14px 16px;
    }
}

/* =========================================
   [09] DASHBOARD STYLES
========================================= */
.dashboard {
    padding: 80px 0;
}

.dashboardCard {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.dashboardUserInfo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dashboardAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c0392b;
}

.dashboardAvatarPlaceholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.dashboardUserDetails {
    margin-left: 20px;
}

.dashboardUserName {
    color: #fff;
    margin: 0;
}

.dashboardUserEmail {
    color: #888;
    margin: 5px 0;
}

.dashboardUserRank {
    color: #f1c40f;
}

.dashboardLogout {
    margin-top: 15px;
}

.statCard {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.statCard i {
    margin-bottom: 15px;
}

.statCard h3 {
    color: #fff;
    margin: 0;
}

.statCard p {
    color: #888;
    margin: 5px 0 0;
}

.statCard .icon-primary {
    color: #c0392b;
}

.statCard .icon-warning {
    color: #f1c40f;
}

.statCard .icon-success {
    color: #27ae60;
}

.quickLink {
    display: block;
    background-color: #2c2c2c;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quickLink:hover {
    background-color: #333 !important;
    transform: translateY(-3px);
    text-decoration: none;
}

.quickLink i {
    margin-bottom: 10px;
}

.quickLink .icon-primary {
    color: #c0392b;
}

.quickLink .icon-info {
    color: #3498db;
}

.quickLink h5 {
    color: #fff;
    margin: 0;
}

.quickLink p {
    color: #888;
    margin: 5px 0 0;
    font-size: 13px;
}

/* =========================================
   [10] PAGINATION STYLES
========================================= */
.pagination-wrapper {
    margin-top: 30px;
}

.pagination > li > a,
.pagination > li > span {
    background-color: #222;
    border-color: #333;
    color: #ddd;
}

.pagination > li > a:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus {
    background-color: #c0392b;
    border-color: #c0392b;
}

/* =========================================
   [11] TEXT STYLES
========================================= */
.text-white {
    color: #fff;
}

.text-light {
    color: #ddd;
}

.text-muted-custom {
    color: #888;
}

.text-muted-light {
    color: #aaa;
}

.text-primary-custom {
    color: #c0392b;
}

/* =========================================
   [12] SPACING UTILITIES
========================================= */
.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

/* =========================================
   [13] IFRAME STYLES
========================================= */
.map-iframe {
    border: 0;
}

/* =========================================
   [14] HOME PAGE STYLES
========================================= */
.singleOffer p.offer-text-fixed {
    height: 150px;
}

.eventsList {
    text-align: center;
    padding: 20px 0;
}

/* Service Cards - Minimal Design */
.service-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #c0392b;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.15);
    background-color: #222;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-icon i {
    font-size: 32px;
    color: #e43d4e;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #e74c3c;
    transform: scale(1.1);
}

.service-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Inter', 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card p {
    color: #888;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    max-width: 280px;
}

/* Responsive */
@media (max-width: 991px) {
    .service-card {
        padding: 35px 25px;
        margin-bottom: 20px;
        min-height: 260px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .service-card {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* =========================================
   [15] AUTH MODAL STYLES
========================================= */
.auth-modal {
    z-index: 99999 !important;
}

.auth-modal .modal-backdrop,
.modal-backdrop {
    z-index: 99998 !important;
}

.auth-modal .modal-dialog {
    z-index: 99999;
}

.auth-modal .modal-content {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
}

.auth-modal .modal-header {
    background-color: #222;
    border-bottom: 1px solid #333;
    border-radius: 12px 12px 0 0;
    padding: 20px 25px;
}

.auth-modal .modal-header .modal-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.auth-modal .modal-header .close {
    color: #fff;
    opacity: 0.7;
    text-shadow: none;
    font-size: 28px;
}

.auth-modal .modal-header .close:hover {
    opacity: 1;
}

.auth-modal .modal-body {
    padding: 30px;
}

.auth-modal .modal-footer {
    background-color: #222;
    border-top: 1px solid #333;
    border-radius: 0 0 12px 12px;
    padding: 15px 25px;
}

.auth-modal .form-control:focus {
    background-color: #2c2c2c;
    border-color: #c0392b;
    outline: none;
    box-shadow: none;
}

.auth-modal .form-group {
    margin-bottom: 20px;
}

.auth-modal .form-group label {
    color: #ddd;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.auth-modal .btn-primary {
    background-color: #c0392b;
    border-color: #a93226;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    width: 100%;
}

.auth-modal .btn-primary:hover {
    background-color: #a93226;
    border-color: #922b21;
}

.auth-modal .auth-switch {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.auth-modal .auth-switch a {
    color: #c0392b;
    text-decoration: none;
}

.auth-modal .auth-switch a:hover {
    text-decoration: underline;
}

.auth-modal .auth-switch span {
    color: #888;
}

.auth-modal .logo-modal {
    text-align: center;
    margin-bottom: 25px;
}

.auth-modal .logo-modal img {
    max-width: 120px;
}

.auth-modal .alert {
    margin-bottom: 20px;
}

/* Auth buttons in header */
.header-auth-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
}

.header-auth-buttons .btn-login {
    background-color: transparent !important;
    border: 1px solid #c0392b !important;
    color: #c0392b !important;
}

.header-auth-buttons .btn-login:hover,
.header-auth-buttons .btn-login:focus {
    background-color: #c0392b !important;
    color: #fff !important;
}

.header-auth-buttons .btn-register {
    background-color: #c0392b !important;
    border: 1px solid #c0392b !important;
    color: #fff !important;
}

.header-auth-buttons .btn-register:hover,
.header-auth-buttons .btn-register:focus {
    background-color: #a93226 !important;
    border-color: #a93226 !important;
}

/* User dropdown for logged in users */
.user-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.user-dropdown .dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.user-dropdown .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c0392b;
}

.user-dropdown .user-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.user-dropdown .dropdown-menu {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
}

.user-dropdown .dropdown-menu li a {
    color: #ddd;
    padding: 10px 20px;
    display: block;
}

.user-dropdown .dropdown-menu li a:hover {
    background-color: #333;
    color: #fff;
}

.user-dropdown .dropdown-menu .divider {
    background-color: #333;
    margin: 8px 0;
}

.user-dropdown .user-profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.user-dropdown .user-profile-trigger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   [15] USER PROFILE MODAL
========================================= */
.user-profile-modal {
    z-index: 100000 !important;
}

.user-profile-modal .modal-backdrop {
    z-index: 99999 !important;
}

.user-profile-modal .modal-content {
    background-color: #1a1a1a !important;
    border: 1px solid #333;
    border-radius: 12px;
}

.user-profile-modal .modal-header {
    background-color: #222 !important;
    border-bottom: 1px solid #333;
    border-radius: 12px 12px 0 0;
    padding: 15px 20px;
}

.user-profile-modal .modal-header .close {
    color: #fff;
    opacity: 0.7;
    font-size: 28px;
}

.user-profile-modal .modal-header .close:hover {
    opacity: 1;
}

.user-profile-modal .modal-title {
    color: #fff;
    font-weight: 600;
}

.user-profile-modal .modal-body {
    background-color: #1a1a1a !important;
    padding: 30px;
}

.user-profile-modal .modal-dialog {
    max-width: 900px;
    z-index: 100001 !important;
    position: relative;
}

.user-profile-container {
    display: flex;
    gap: 30px;
    min-height: 500px;
}

.user-profile-sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: #222;
    border-radius: 8px;
    padding: 20px;
}

.user-profile-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.user-profile-header .profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c0392b;
    margin-bottom: 15px;
}

.user-profile-header h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Oswald', sans-serif;
}

.user-profile-header .profile-email {
    color: #aaa;
    font-size: 13px;
    margin: 0 0 15px 0;
}

.user-profile-header .profile-stats {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.user-profile-header .profile-stats .stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}

.user-profile-header .profile-stats .stat-item:last-child {
    margin-bottom: 0;
}

.user-profile-header .profile-stats .stat-label {
    color: #aaa;
}

.user-profile-header .profile-stats .stat-value {
    color: #fff;
    font-weight: 600;
}

.user-profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-profile-menu li {
    margin-bottom: 5px;
}

.user-profile-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    padding: 12px 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.user-profile-menu li a i {
    width: 20px;
    text-align: center;
}

.user-profile-menu li:hover a,
.user-profile-menu li.active a {
    background-color: #2a2a2a;
    color: #fff;
}

.user-profile-menu li.active a {
    background-color: #c0392b;
    color: #fff;
}

.user-profile-menu li.divider {
    height: 1px;
    background-color: #333;
    margin: 15px 0;
    padding: 0;
}

.user-profile-content {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
}

.profile-section {
    display: none;
}

.profile-section.active {
    display: block;
}

.profile-section h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 25px 0;
    font-family: 'Oswald', sans-serif;
}

.profile-info .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
}

.profile-info .info-row:last-child {
    border-bottom: none;
}

.profile-info .info-row label {
    width: 180px;
    color: #aaa;
    font-weight: 500;
    flex-shrink: 0;
}

.profile-info .info-row span {
    color: #fff;
    flex: 1;
}

.profile-info .info-row .badge {
    display: inline-block;
    background-color: #c0392b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 5px;
}

.profile-section .form-group {
    margin-bottom: 20px;
}

.profile-section .form-group label {
    color: #ddd;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.profile-section .form-control {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
}

.profile-section .form-control:focus {
    background-color: #2c2c2c;
    border-color: #c0392b;
    outline: none;
    box-shadow: none;
}

.profile-section .form-help {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.profile-section .btn-primary {
    background-color: #c0392b;
    border: none;
    color: #fff;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.profile-section .btn-primary:hover {
    background-color: #a93226;
}

.profile-section .btn-primary:disabled {
    background-color: #666;
    cursor: not-allowed;
}

/* Avatar Upload */
.avatar-upload-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.avatar-upload-container {
    position: relative;
    width: 150px;
    height: 150px;
    cursor: pointer;
}

.avatar-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c0392b;
    display: block;
}

.avatar-upload-overlay {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.avatar-upload-overlay:hover {
    background-color: #a93226;
    transform: scale(1.1);
}

.avatar-upload-overlay i {
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.avatar-upload-container:hover .avatar-preview {
    opacity: 0.9;
}

/* Checkbox List */
.checkbox-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

/* Checkbox List - İkincil Silahlar ve Ekipmanlar */
#section-weapons .checkbox-list,
#updateWeaponsForm .checkbox-list {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    gap: 15px !important;
    margin-top: 10px !important;
}

#section-weapons label.checkbox-item,
#updateWeaponsForm label.checkbox-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    color: #ddd !important;
    cursor: pointer !important;
    padding: 12px 15px !important;
    border: 1px solid #444 !important;
    border-radius: 6px !important;
    background-color: #2c2c2c !important;
    transition: all 0.2s !important;
    flex: 0 0 calc(50% - 8px) !important;
    min-height: 48px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

#section-weapons label.checkbox-item:hover,
#updateWeaponsForm label.checkbox-item:hover {
    background-color: #333 !important;
    border-color: #c0392b !important;
}

#section-weapons label.checkbox-item input[type="checkbox"],
#updateWeaponsForm label.checkbox-item input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    accent-color: #c0392b !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

#section-weapons label.checkbox-item span,
#updateWeaponsForm label.checkbox-item span {
    display: inline !important;
    line-height: 1.5 !important;
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#section-weapons label.checkbox-item input[type="checkbox"]:checked + span,
#updateWeaponsForm label.checkbox-item input[type="checkbox"]:checked + span {
    color: #fff !important;
    font-weight: 600 !important;
}

#section-weapons label.checkbox-item:has(input[type="checkbox"]:checked),
#updateWeaponsForm label.checkbox-item:has(input[type="checkbox"]:checked) {
    background-color: #2a1a1a !important;
    border-color: #c0392b !important;
}

.text-muted {
    color: #888;
}

.profile-section .alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.profile-section .alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.profile-section .alert ul {
    margin: 0;
    padding-left: 20px;
}

.profile-section .alert li {
    margin-bottom: 5px;
}

.profile-section .alert li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .user-profile-container {
        flex-direction: column;
    }
    
    .user-profile-sidebar {
        width: 100%;
    }
    
    .profile-info .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .profile-info .info-row label {
        width: 100%;
    }
}

/* =========================================
   [16] RESPONSIVE STYLES
========================================= */

/* Large screens */
@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .header .logo img {
        max-height: 40px;
    }
    
    .mainNav ul li {
        margin: 0 5px !important;
    }
    
    .mainNav ul li a {
        font-size: 13px;
    }
    
    .header-auth-buttons .btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .pollsList,
    .pollDetail,
    .dashboard,
    .authSection {
        padding: 50px 0;
    }
    
    .singleOffer p.offer-text-fixed {
        height: auto;
        min-height: 100px;
    }
}

/* Mobile landscape */
@media (max-width: 767px) {
    body.has-fixed-header {
        padding-top: 70px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header .logo img {
        max-height: 35px;
    }
    
    /* Mobile menu */
    .mainNav {
        position: relative;
    }
    
    .mainNav .mobileMenu {
        display: block !important;
        cursor: pointer;
        padding: 10px;
    }
    
    .mainNav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        border: 1px solid #333;
        border-radius: 8px;
        padding: 15px;
        display: none;
        z-index: 1000;
    }
    
    .mainNav ul.active {
        display: block !important;
    }
    
    .mainNav ul li {
        display: block !important;
        margin: 0 !important;
    }
    
    .mainNav ul li a {
        display: block;
        padding: 12px 15px;
        border-bottom: 1px solid #333;
    }
    
    .mainNav ul li:last-child a {
        border-bottom: none;
    }
    
    .header-auth-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .header-auth-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .pollsList,
    .pollDetail,
    .dashboard,
    .authSection {
        padding: 30px 0;
    }
    
    .panel-body-dark,
    .panel-body-dark-lg {
        padding: 15px;
    }
    
    .poll-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .poll-stats {
        flex-direction: column;
        gap: 5px;
    }
    
    .poll-stats-item {
        margin-left: 0;
    }
    
    .dashboardUserInfo {
        flex-direction: column;
        text-align: center;
    }
    
    .dashboardUserDetails {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .statCard {
        padding: 20px;
    }
    
    .authBox {
        padding: 25px;
        margin: 30px 0;
    }
    
    .singleOffer p.offer-text-fixed {
        height: auto;
    }
    
    /* Modal responsive */
    .auth-modal .modal-dialog {
        margin: 10px;
    }
    
    .auth-modal .modal-body {
        padding: 20px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .header .logo img {
        max-height: 30px;
    }
    
    .panel-title-lg {
        font-size: 18px;
    }
    
    .panel-title-md {
        font-size: 16px;
    }
    
    .poll-option-label {
        font-size: 14px;
    }
    
    .poll-option-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .poll-option-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-block-custom {
        padding: 12px;
        font-size: 15px;
    }
    
    .quickLink {
        padding: 15px;
    }
    
    .info-list-value {
        float: none;
        display: block;
        margin-top: 5px;
    }
}

/* =========================================
   [17] AGE VERIFICATION MODAL
========================================= */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-verification-modal {
    background-color: #1a1a1a;
    border: 2px solid #c0392b;
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-verification-modal .logo {
    margin-bottom: 25px;
    text-align: center;
}

.age-verification-modal .logo img {
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

.age-verification-modal .warning-icon {
    font-size: 48px;
    color: #c0392b;
    margin-bottom: 20px;
}

.age-verification-modal h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.age-verification-modal p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.age-verification-modal .age-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
}

.age-verification-modal .btn-age-yes {
    background-color: #27ae60;
    border: none;
    color: #fff;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.age-verification-modal .btn-age-yes:hover {
    background-color: #219a52;
    transform: translateY(-2px);
}

.age-verification-modal .btn-age-no {
    background-color: #c0392b;
    border: none;
    color: #fff;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.age-verification-modal .btn-age-no:hover {
    background-color: #a93226;
    transform: translateY(-2px);
}

.age-verification-modal .legal-text {
    font-size: 12px;
    color: #666;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

@media (max-width: 520px) {
    .age-verification-modal {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .age-verification-modal .logo img {
        max-width: 120px;
    }
    
    .age-verification-modal .warning-icon {
        font-size: 36px;
    }
    
    .age-verification-modal h2 {
        font-size: 20px;
    }
    
    .age-verification-modal p {
        font-size: 14px;
    }
    
    .age-verification-modal .age-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-verification-modal .btn-age-yes,
    .age-verification-modal .btn-age-no {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* =========================================
   [18] COOKIE CONSENT BANNER
========================================= */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px;
    z-index: 99990;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-text h4 i {
    color: #f39c12;
}

.cookie-consent-text p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: #c0392b;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn-cookie-accept {
    background-color: #c0392b;
    border: none;
    color: #fff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent-buttons .btn-cookie-accept:hover {
    background-color: #a93226;
}

.cookie-consent-buttons .btn-cookie-settings {
    background-color: transparent;
    border: 1px solid #555;
    color: #aaa;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent-buttons .btn-cookie-settings:hover {
    border-color: #888;
    color: #fff;
}

@media (max-width: 767px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-consent-buttons button {
        width: 100%;
    }
}

