/* Casino N8 - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #EEEEEE;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #253900;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin: 0.5rem 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 5px;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #EEEEEE;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #FFFFFF;
}

.breadcrumb-item[aria-current="page"] a {
    color: #FFFFFF;
    font-weight: bold;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin-left: 5px;
    color: #EEEEEE;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background-color: #08CB00;
    color: #000000;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #08CB00;
    color: #000000;
    box-shadow: 0 4px 15px rgba(8, 203, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #253900;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(8, 203, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #000000;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

/* Page Header */
.page-header {
    background: #000000;
    color: #FFFFFF;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: #000000;
    color: #FFFFFF;
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Content Sections */
.about,
.features,
.registration-process,
.register-section,
.login-section,
.advantages-security,
.faq,
.cta {
    padding: 4rem 0;
}

.about {
    background: #EEEEEE;
}

.features {
    background: #FFFFFF;
}

.registration-process {
    background: #EEEEEE;
}

.register-section {
    background: #FFFFFF;
}

.login-section {
    background: #EEEEEE;
}

.advantages-security {
    background: #FFFFFF;
}

.faq {
    background: #EEEEEE;
}

.cta {
    background: #253900;
    color: #FFFFFF;
    text-align: center;
}

/* Section Headings */
h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #000000;
}

.cta h2 {
    color: #FFFFFF;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    color: #000000;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(8, 203, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

/* Process Content */
.process-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Registration and Login Sections */
.register-section,
.login-section {
    padding: 4rem 0;
}

.register-section .container,
.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.register-content,
.login-content {
    color: #000000;
}

.register-content h2,
.login-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    text-align: left;
}

.register-content h3,
.login-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    color: #000000;
}

.register-content p,
.login-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Steps Container */
.steps-container {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #08CB00;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(8, 203, 0, 0.1);
}

.step-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #08CB00;
    padding: 10px;
    object-fit: contain;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.step-content p {
    font-size: 1rem;
    margin: 0;
    color: #333;
}

.step-content strong {
    color: #08CB00;
    font-weight: 600;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
    color: #333;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #08CB00;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
    text-align: left;
}

.register-note,
.login-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: #333;
}

.register-note a,
.login-note a {
    color: #08CB00;
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover,
.login-note a:hover {
    text-decoration: underline;
}

/* Images */
.register-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.register-img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.register-img:hover {
    transform: scale(1.05);
}

.login-image {
    text-align: center;
}

.login-img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.login-img:hover {
    transform: scale(1.02);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #000000;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 203, 0, 0.15);
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #000000;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(8, 203, 0, 0.1);
}

.faq-item h3 {
    color: #000000;
    margin-bottom: 1rem;
}

/* About Page Styles */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.content-main {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #000000;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #000000;
}

.sidebar-card h4 {
    color: #000000;
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

/* Team Section */
.team {
    background: #EEEEEE;
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    color: #000000;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* Privacy Policy & Terms Styles */
.privacy-content,
.terms-content,
.disclaimer-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
    color: #000000;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-wrapper ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Support Page Styles */
.support-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
    color: #000000;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-card {
    background: #EEEEEE;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #000000;
}

.support-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.faq-section {
    margin: 3rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    background: #EEEEEE;
    padding: 1.5rem;
    border-radius: 10px;
    color: #000000;
}

.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-item {
    background: #EEEEEE;
    padding: 1.5rem;
    border-radius: 10px;
    color: #000000;
}

.category-item h3 {
    margin-bottom: 1rem;
}

.category-item ul {
    list-style: none;
}

.category-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.category-item li:last-child {
    border-bottom: none;
}

.response-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.time-item {
    background: #EEEEEE;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: #000000;
}

.pre-contact-tips {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 3rem 0;
}

/* 404 Error Page */
.error-page {
    padding: 4rem 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-img {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.error-text h1 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000000;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.helpful-links {
    background: #EEEEEE;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: #000000;
}

.helpful-links h3 {
    margin-bottom: 1rem;
}

.helpful-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.helpful-links li a {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.helpful-links li a:hover {
    background: #000000;
    color: #FFFFFF;
}

.search-suggestion {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 10px;
}

.search-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.search-option {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.search-option:hover {
    background: #000000;
    color: #FFFFFF;
}

/* Footer */
.footer {
    background: #000000;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: #08CB00;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-connect h4 {
    color: #08CB00;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #08CB00;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn:focus {
    outline: 2px solid #08CB00;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #253900;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.mobile-open {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }
    
    .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .nav-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .advantages-grid,
    .support-grid,
    .contact-methods,
    .support-categories {
        grid-template-columns: 1fr;
    }
    
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .register-content,
    .login-content {
        text-align: left;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .register-images {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .register-img {
        max-width: 150px;
        margin: 0.5rem;
    }
    
    .hero-actions,
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature-card,
    .advantage-item,
    .support-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid #08CB00;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000000;
        color: #FFFFFF;
        border: 2px solid #FFFFFF;
    }
    
    .btn-outline {
        background: #FFFFFF;
        color: #000000;
        border: 2px solid #000000;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav-actions,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
