/* Alexander Casino Styles */

/* CSS Variables */
:root {
    --primary-color: #f18345;
    --primary-hover: #e67332;
    --secondary-color: #6b7280;
    --background-color: #002e3c;
    --card-color: #1a4a5c;
    --text-color: #ffffff;
    --text-muted: #b3d4db;
    --border-color: #2a5c6f;
    --gradient-dark: linear-gradient(135deg, #002e3c 0%, #1a4a5c 100%);
    --gradient-hero: linear-gradient(135deg, #002e3c 0%, #1a4a5c 50%, #001c26 100%);
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--card-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 46, 60, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    max-width: 100%;
    overflow: visible;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
}

.logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap;
}

.navbar-nav {
    display: flex; 
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100vw - 400px);
    overflow: hidden;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0.375rem;
    border-radius: 0.25rem;
    white-space: nowrap;
    font-size: 0.75rem;
    text-align: center;
    min-width: fit-content;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Main Content */
.main-content {
    margin-top: 4rem;
    display: flex;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 4rem;
    bottom: 0;
    width: 12rem;
    background-color: var(--card-color);
    border-right: 1px solid var(--border-color);
    z-index: 40;
    overflow-y: auto;
}

.sidebar-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-btn {
    width: 100%;
    justify-content: center;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.sidebar-link {
    display: block;
    padding: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* Main Wrapper */
.main-wrapper {
    flex: 1;
    margin-left: 12rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    background: var(--gradient-hero);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../img/backgfround.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 46, 60, 0.8), rgba(0, 46, 60, 0.4));
}

.hero-content {
    position: relative;
    z-index: 15;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0;
    max-width: 32rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f97316;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-crown {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.15;
    z-index: 12;
}

/* Hero Navigation */
.hero-nav {
    background-color: rgba(0, 46, 60, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 20;
}

.hero-nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
}

.hero-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
    border-radius: 0.25rem;
}

.hero-nav-link:hover,
.hero-nav-link.active {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Games Section */
.games-section {
    padding: 2rem 0;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.game-card {
    position: relative;
    background-color: var(--card-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.game-image {
    aspect-ratio: 4/3;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-info {
    padding: 0.75rem;
}

.game-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-play-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(1rem);
    transition: var(--transition);
}

.game-card:hover .game-play-btn {
    transform: translateY(0);
}

/* View All Section */
.view-all-section {
    text-align: center;
    padding: 2rem 0;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background-color: var(--card-color);
}

.info-section:nth-child(even) {
    background-color: rgba(26, 74, 92, 0.7);
}

.info-content {
    display: grid;
    gap: 4rem;
}

.info-block {
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
}

.info-block ul,
.info-block ol {
    text-align: left;
}

.info-block h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.info-block p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: #f18345;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.25rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #001c26;
    color: white;
    padding: 2.5rem 0 1.25rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* Footer Organizations */
.footer-organizations {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    text-align: center;
}

.footer-organizations h3 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.org-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.org-logo {
    height: 50px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(100%) brightness(0.8);
    display: block;
}

.org-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--card-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

table th,
table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: rgba(241, 131, 69, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

table td {
    color: var(--text-color);
    font-size: 0.875rem;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background-color: rgba(241, 131, 69, 0.05);
}

/* Responsive table */
@media (max-width: 767px) {
    table {
        font-size: 0.75rem;
    }
    
    table th,
    table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Lists */
.info-block ul,
.info-block ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.info-block ul li,
.info-block ol li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-bottom: 1px solid rgba(42, 92, 111, 0.3);
    transition: var(--transition);
}

.info-block ul li:last-child,
.info-block ol li:last-child {
    border-bottom: none;
}

.info-block ul li:hover,
.info-block ol li:hover {
    color: var(--text-color);
    background-color: rgba(241, 131, 69, 0.05);
    border-radius: 0.25rem;
}

/* Unordered list bullets */
.info-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Ordered list numbers */
.info-block ol {
    counter-reset: custom-counter;
}

.info-block ol li {
    counter-increment: custom-counter;
}

.info-block ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Info block images */
.info-block-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem auto;
    display: block;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-block-image:hover {
    transform: scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.info-block-with-image {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .info-block-with-image {
        grid-template-columns: 1fr 400px;
    }
    
    .info-block-with-image:nth-child(even) {
        grid-template-columns: 400px 1fr;
    }
    
    .info-block-with-image:nth-child(even) .info-block-image {
        order: -1;
    }
}

@media (max-width: 767px) {
    .info-block-image {
        max-width: 100%;
        margin: 1rem auto;
    }
}

/* Author Block Styles */
.author-block {
    margin: 3rem 0;
    padding: 2rem 0;
}

.author-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    background-color: rgba(26, 74, 92, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.author-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.author-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.author-image:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-lg);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.author-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.author-bio {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    align-self: flex-start;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Author Profile Page Styles */
.author-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.author-profile .author-photo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
}

.author-profile .author-image {
    width: 250px;
    height: 250px;
    border-radius: 1rem;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.author-info h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.author-info .author-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.author-description {
    margin-bottom: 2rem;
}

.author-description p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.author-expertise,
.author-experience,
.author-mission {
    margin-bottom: 2rem;
}

.author-expertise h3,
.author-experience h3,
.author-mission h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.author-expertise ul {
    list-style: none;
    padding: 0;
}

.author-expertise ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.author-expertise ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(26, 74, 92, 0.5);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.experience-year {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.experience-desc h4 {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.experience-desc p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Blockquote styles */
blockquote {
    background-color: rgba(241, 131, 69, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
    opacity: 0.3;
}

blockquote p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

/* Content Pages */
.content-page {
    padding: 2rem 0;
    min-height: calc(100vh - 4rem);
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.content-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0;
}

.content-body {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(42, 92, 111, 0.2);
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.content-section h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem;
}

.content-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Support Methods */
.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-method {
    background-color: var(--card-color);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.support-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.availability {
    color: var(--primary-color);
    font-weight: 600;
}

.response-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: 2rem;
}

.faq-category h3 {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    margin: 0 0 1rem;
    border-radius: 0.5rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--card-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(241, 131, 69, 0.2);
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.guide-item {
    background-color: var(--card-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.guide-item h4 {
    margin-top: 0;
}

/* Service Status */
.service-status {
    background-color: var(--card-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-online {
    background-color: #10b981;
}

.status-offline {
    background-color: #ef4444;
}

.status-warning {
    background-color: #f59e0b;
}

.status-label {
    flex: 1;
    color: var(--text-color);
}

.status-value {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-item {
    background-color: var(--card-color);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.partner-logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.action-item {
    background-color: var(--card-color);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.action-item h4 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Emergency Help */
.emergency-help {
    background-color: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.emergency-help h3 {
    color: #ef4444;
    margin-top: 0;
}

.help-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Support Guarantee */
.support-guarantee {
    background-color: var(--card-color);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.support-guarantee h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.support-guarantee ul {
    list-style: none;
    padding: 0;
}

.support-guarantee li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}