/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0f0f14;
}

.header .container {
    max-width: unset;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: #ffc736;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: #ffc736;
    color: #0f0f14;
}

.btn-primary:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
    color: #0f0f14;
    box-shadow: 0 4px 12px rgba(255, 199, 54, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid hsla(0,0%,100%,.12);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Header */
.header {
    background-color: #1a1a22;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 20px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover, .nav-list a.active {
    color: #ffc736;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Banner */
.banner {
    padding: 2rem 0;
}

.banner-content {
    text-align: center;
}

.banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Main Content */
.main {
    padding: 2rem 0;
}

section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    margin-bottom: 2rem;
    color: #ffc736;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-cta {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background-color: rgba(255, 199, 54, 0.1);
    color: #ffc736;
    font-weight: 600;
}

tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Games Tables */
.games-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.table-section h3 {
    color: #ffc736;
    margin-bottom: 1rem;
    text-align: center;
}

/* Slots Tables */
.slots-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

/* Slots List */
.slots-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.slots-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 199, 54, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffc736;
}

.slots-list li::before {
    content: '🎰';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* Live Casino Tables */
.live-games-table,
.live-bonus-table {
    margin: 2rem 0;
}

.live-games-table h3,
.live-bonus-table h3 {
    color: #ffc736;
    margin-bottom: 1rem;
    text-align: center;
}

/* Comparison Section */
.comparison-section {
    margin: 3rem 0;
}

.comparison-section h3 {
    color: #ffc736;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-table {
    margin: 2rem 0;
}

.comparison-note {
    background-color: rgba(255, 199, 54, 0.1);
    border: 1px solid rgba(255, 199, 54, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: #ffc736;
}

.comparison-note strong {
    color: #ffc736;
}

/* Aviator Tables */
.mechanics-table,
.strategies-comparison,
.aviator-bonus-table {
    margin: 2rem 0;
}

.mechanics-table h3,
.strategies-comparison h3,
.aviator-bonus-table h3 {
    color: #ffc736;
    margin-bottom: 1rem;
    text-align: center;
}

/* Strategies List */
.strategies-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.strategies-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2.5rem;
    margin-bottom: 0.75rem;
    background-color: rgba(255, 199, 54, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffc736;
}

.strategies-list li::before {
    content: '✈️';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* Mobile App Specific Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 199, 54, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: #ffc736;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #ffc736;
    margin-bottom: 1rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.requirement-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-item h3 {
    color: #ffc736;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-item ul {
    list-style: none;
    padding-left: 0;
}

.requirement-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.requirement-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc736;
    font-weight: bold;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    background-color: #ffc736;
    color: #0f0f14;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffc736;
    margin-bottom: 0.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 199, 54, 0.3);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ffc736;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #ffc736;
    margin-bottom: 1rem;
}

.troubleshooting-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.trouble-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trouble-item h3 {
    color: #ffc736;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trouble-item ul {
    list-style: none;
    padding-left: 0;
}

.trouble-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.trouble-item li::before {
    content: '🔧';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Text Colors for Icons */
.text-success {
    color: #4caf50;
}

.text-danger {
    color: #f44336;
}

.text-info {
    color: #2196f3;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Pages Grid */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.page-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-item h3 {
    color: #ffc736;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: #ffc736;
    margin-bottom: 1rem;
}

/* Responsible Gaming */
.responsible-gaming {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 0;
    text-align: center;
}

.warning-text {
    color: #ffc736;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.warning-text i {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background-color: #1a1a22;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffc736;
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: #ffc736;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffc736;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ffc736;
    color: #0f0f14;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 199, 54, 0.3);
}

.back-to-top:hover {
    background-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 199, 54, 0.4);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a22;
    border-top: 2px solid #ffc736;
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .games-tables,
    .slots-tables {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .requirements-grid,
    .download-steps,
    .benefits-list,
    .troubleshooting-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1660px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .logo img {
        height: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .games-tables,
    .slots-tables {
        gap: 1.5rem;
    }
    
    .slots-list li {
        padding: 0.75rem 0 0.75rem 1.5rem;
    }
    
    .slots-list li::before {
        left: 0.25rem;
        font-size: 1rem;
    }
    
    .comparison-note {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .strategies-list li {
        padding: 0.75rem 0 0.75rem 2rem;
    }
    
    .strategies-list li::before {
        left: 0.5rem;
        font-size: 1rem;
    }
    
    .features-grid,
    .requirements-grid,
    .download-steps,
    .benefits-list,
    .troubleshooting-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 0;
    }

    h3 {
        font-size: 1.2rem;
    }

    .header-buttons {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 15px;
        order: 3;
    }

    .btn {
        padding: 5px 10px !important;
        font-size: 14px !important;
    }
    
    section {
        padding: 1.5rem 0;
    }
    
    .page-item {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .payment-methods {
        font-size: 1.5rem;
    }
    
    .social-links {
        font-size: 1.2rem;
    }
    
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .games-tables,
    .slots-tables {
        gap: 1rem;
    }
    
    .slots-list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .slots-list li::before {
        font-size: 0.9rem;
    }
    
    .comparison-note {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .strategies-list li {
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .strategies-list li::before {
        font-size: 0.9rem;
    }
    
    .feature-item,
    .requirement-item,
    .benefit-item,
    .trouble-item {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .app-functions h2,
    .casino-sports-mobile h2,
    .bonus-actions-app h2 {
        font-size: 1.6rem;
    }
    
    .app-functions p,
    .casino-sports-mobile p,
    .bonus-actions-app p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* Mobile Menu Styles */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a22;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav.active .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.nav.active .nav-list a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation for mobile menu toggle */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #ffc736;
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Hover effects for interactive elements */
.page-item:hover,
.faq-item:hover {
    border-color: rgba(255, 199, 54, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #ffc736;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

/* Form validation styles */
.error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2) !important;
}

/* Loading spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} 

/* Login Page Specific Styles */
.login-section {
    margin: 3rem 0;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.login-form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-form-wrapper h2 {
    color: #ffc736;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #ffc736;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #ffc736;
    box-shadow: 0 0 0 2px rgba(255, 199, 54, 0.2);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #ffc736;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1;
}

.password-toggle:hover {
    color: #ffd700;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #fff;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background-color: #ffc736;
    border-color: #ffc736;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0f0f14;
    font-weight: bold;
    font-size: 0.8rem;
}

.forgot-password {
    color: #ffc736;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: #ffd700;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    margin-bottom: 2rem;
}

.login-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.login-divider span {
    background-color: #0f0f14;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
}

.google-btn:hover {
    background-color: #db4437;
    border-color: #db4437;
}

.facebook-btn:hover {
    background-color: #4267b2;
    border-color: #4267b2;
}

.login-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-footer a {
    color: #ffc736;
    font-weight: 600;
}

.login-footer a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.login-benefits {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h3 {
    color: #ffc736;
    margin-bottom: 2rem;
    text-align: center;
}

.login-benefits .benefits-list {
    margin-bottom: 2rem;
}

.login-benefits .benefit-item {
    background-color: transparent;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
}

.login-benefits .benefit-item:hover {
    transform: none;
    box-shadow: none;
}

.login-benefits .benefit-item i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.login-benefits .benefit-item h4 {
    color: #ffc736;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.login-benefits .benefit-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.security-info {
    background-color: rgba(255, 199, 54, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 199, 54, 0.2);
}

.security-info h4 {
    color: #ffc736;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.security-info ul {
    list-style: none;
    padding-left: 0;
}

.security-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.security-info li i {
    color: #ffc736;
    font-size: 0.9rem;
}

/* Recovery Section */
.recovery-section {
    text-align: center;
    margin: 4rem 0;
}

.recovery-section h2 {
    color: #ffc736;
    margin-bottom: 1rem;
}

.recovery-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.recovery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.recovery-option {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recovery-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 199, 54, 0.3);
}

.recovery-option i {
    font-size: 3rem;
    color: #ffc736;
    margin-bottom: 1rem;
}

.recovery-option h3 {
    color: #ffc736;
    margin-bottom: 1rem;
}

.recovery-option p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Security Section */
.security-section {
    text-align: center;
    margin: 4rem 0;
}

.security-section h2 {
    color: #ffc736;
    margin-bottom: 1rem;
}

.security-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.security-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 199, 54, 0.3);
}

.tip-item i {
    font-size: 2.5rem;
    color: #ffc736;
    margin-bottom: 1rem;
}

.tip-item h3 {
    color: #ffc736;
    margin-bottom: 1rem;
}

.tip-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    color: #ffc736;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
} 

/* Images Sections */
.live-casino-images,
.casino-games-images,
.online-slots-images,
.bonus-offers-images,
.sports-betting-images,
.aviator-game-images,
.mobile-app-images,
.login-images,
.startseite-images,
.about-us-images {
    margin: 4rem 0;
    text-align: center;
}

.live-casino-images h2,
.casino-games-images h2,
.online-slots-images h2,
.bonus-offers-images h2,
.sports-betting-images h2,
.aviator-game-images h2,
.mobile-app-images h2,
.login-images h2,
.startseite-images h2,
.about-us-images h2 {
    color: #ffc736;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.live-casino-images p,
.casino-games-images p,
.online-slots-images p,
.bonus-offers-images p,
.sports-betting-images p,
.aviator-game-images p,
.mobile-app-images p,
.login-images p,
.startseite-images p,
.about-us-images p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Login Page Specific Styles */
.simple-login,
.registration-steps,
.benefits-registered,
.security-responsibility {
    margin: 3rem 0;
}

.simple-login h2,
.registration-steps h2,
.benefits-registered h2,
.security-responsibility h2 {
    color: #ffc736;
    margin-bottom: 1.5rem;
    text-align: center;
}

.simple-login p,
.registration-steps p,
.benefits-registered p,
.security-responsibility p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Mobile App Page Specific Styles */
.app-functions,
.casino-sports-mobile,
.bonus-actions-app {
    margin: 3rem 0;
}

.app-functions h2,
.casino-sports-mobile h2,
.bonus-actions-app h2 {
    color: #ffc736;
    margin-bottom: 1.5rem;
    text-align: center;
}

.app-functions p,
.casino-sports-mobile p,
.bonus-actions-app p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.app-functions-table,
.casino-games-app-table,
.bonus-offers-app-table {
    margin: 2rem 0;
}

.app-functions-table h3,
.casino-games-app-table h3,
.bonus-offers-app-table h3 {
    color: #ffc736;
    margin-bottom: 1rem;
    text-align: center;
}

.registration-list {
    max-width: 700px;
    margin: 2rem auto;
    padding-left: 0;
    list-style: none;
}

.registration-list li {
    background-color: rgba(255, 199, 54, 0.1);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc736;
    position: relative;
}

.registration-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffc736;
    color: #0f0f14;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.registration-list {
    counter-reset: list-counter;
}

.login-options-table,
.registration-steps-table,
.benefits-table {
    margin: 2rem 0;
}

.login-options-table h3,
.registration-steps-table h3,
.benefits-table h3 {
    color: #ffc736;
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-list {
    max-width: 700px;
    margin: 2rem auto;
    padding-left: 0;
    list-style: none;
}

.benefits-list li {
    background-color: rgba(255, 199, 54, 0.1);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc736;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc736;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefits-list li {
    padding-left: 3rem;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.image-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 199, 54, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.02);
}

.image-item h3 {
    color: #ffc736;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.image-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-item {
        padding: 1.5rem;
    }
    
    .live-casino-images h2,
    .casino-games-images h2,
    .online-slots-images h2,
    .bonus-offers-images h2,
    .sports-betting-images h2,
    .aviator-game-images h2,
    .mobile-app-images h2,
    .login-images h2,
    .startseite-images h2,
    .about-us-images h2 {
        font-size: 1.8rem;
    }
    
    .live-casino-images p,
    .casino-games-images p,
    .online-slots-images p,
    .bonus-offers-images p,
    .sports-betting-images p,
    .aviator-game-images p,
    .mobile-app-images p,
    .login-images p,
    .startseite-images p,
    .about-us-images p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .simple-login h2,
    .registration-steps h2,
    .benefits-registered h2,
    .security-responsibility h2 {
        font-size: 1.8rem;
    }
    
    .app-functions h2,
    .casino-sports-mobile h2,
    .bonus-actions-app h2 {
        font-size: 1.8rem;
    }
    
    .registration-list li,
    .benefits-list li {
        padding: 0.75rem 1rem;
        padding-left: 2.5rem;
    }
    
    .registration-list li::before {
        left: -12px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .image-item {
        padding: 1rem;
    }
    
    .images-grid {
        gap: 1.5rem;
    }
    
    .registration-list li,
    .benefits-list li {
        padding: 0.5rem 0.75rem;
        padding-left: 2rem;
        font-size: 0.9rem;
    }
    
    .registration-list li::before {
        left: -10px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .app-functions h2,
    .casino-sports-mobile h2,
    .bonus-actions-app h2 {
        font-size: 1.6rem;
    }
    
    .app-functions p,
    .casino-sports-mobile p,
    .bonus-actions-app p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
} 