/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #102E50;
    --secondary-color: #F5C45E;
    --accent-color: #E78B48;
    --highlight-color: #BE3D2A;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

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

/* Header and Navigation */
.header {
    background: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(16, 46, 80, 0.15);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(245, 196, 94, 0.1);
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(16, 46, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(16, 46, 80, 0.2);
    border-bottom: 1px solid rgba(245, 196, 94, 0.2);
}

.header.scrolled .nav-link {
    color: var(--white);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link:focus {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.navbar {
    padding: 1rem 0;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    list-style: none;
    position: relative;
}

.nav-link {
    padding: 1.2rem 2rem;
    border-radius: 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    color: var(--white);
    text-decoration: none;
    margin: 0;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover,
.nav-link:focus {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: none;
    padding-left: 2.5rem;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 80%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 1001;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

.btn-login {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-login:hover::before,
.btn-login:focus::before {
    left: 0;
}

.btn-login:hover,
.btn-login:focus {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 196, 94, 0.3);
}

.btn-register {
    background: var(--secondary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-register:hover::before,
.btn-register:focus::before {
    left: 0;
}

.btn-register:hover,
.btn-register:focus {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 139, 72, 0.3);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--accent-color);
    transform: translateY(-2px);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--primary-color);
    color: var(--white);
}

.hamburger {
    display: flex !important;
    z-index: 1000;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--secondary-color);
}

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

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

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

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        transform: translateX(-100%);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(16, 46, 80, 0.3);
        padding: 6rem 0 2rem 0;
        z-index: 999;
        overflow-y: auto;
        display: flex !important;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 1.2rem 2rem;
        border-radius: 0;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
        color: var(--white);
        text-decoration: none;
        margin: 0;
        box-sizing: border-box;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: var(--secondary-color);
        color: var(--primary-color);
        transform: none;
        padding-left: 2.5rem;
        text-decoration: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 1000;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: 1rem;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--white);
        margin: 3px 0;
        transition: var(--transition);
        border-radius: 2px;
    }
    
    .nav-buttons {
        gap: 0.5rem;
        z-index: 1000;
        position: relative;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 0 15px;
        position: relative;
    }
    
    /* Ensure header stays above mobile menu */
    .header {
        z-index: 1001;
    }
    
    /* Mobile menu overlay effect */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(16, 46, 80, 0.95);
        z-index: -1;
    }
    
    /* Ensure navigation is hidden by default on mobile */
    .nav-menu:not(.active) {
        pointer-events: none;
    }
    
    .nav-menu.active {
        pointer-events: auto;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
}

/* Desktop Navigation Styles - Hide mobile elements */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        gap: 2rem;
        transform: none;
        opacity: 1;
        visibility: visible;
        transition: none;
        box-shadow: none;
        padding: 0;
        z-index: auto;
        overflow: visible;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu::before {
        display: none;
    }
    
    .nav-item {
        width: auto;
        border-bottom: none;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 4px;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        display: block;
        width: auto;
        transition: var(--transition);
        color: var(--white);
        text-decoration: none;
        margin: 0;
        box-sizing: border-box;
        border-bottom: none;
        position: relative;
        letter-spacing: 0.5px;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: var(--secondary-color);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(245, 196, 94, 0.3);
        padding-left: 1rem;
        text-decoration: none;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        transition: width 0.3s ease, left 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        min-width: 80px;
        font-size: 0.8rem;
    }
    
    .hamburger {
        margin-left: 0.5rem;
    }
    
    /* Mobile menu adjustments for small screens */
    .nav-menu {
        padding: 5rem 0 1rem 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        padding-left: 2rem;
    }
}

/* Additional mobile navigation improvements */
@media (max-width: 768px) {
    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Enhanced mobile menu animations */
    .nav-menu {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Mobile menu item animations */
    .nav-item {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
}

/* Main Content */
main {
    margin-top: 100px;
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
}

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

.content-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--highlight-color) 100%);
    color: var(--white);
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="80" cy="80" r="0.8" fill="rgba(255,255,255,0.02)"/><circle cx="30" cy="70" r="0.3" fill="rgba(255,255,255,0.01)"/><circle cx="70" cy="30" r="0.6" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(245, 196, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(231, 139, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Decorative Elements */
.hero-section .floating-element {
    position: absolute;
    opacity: 0.1;
    animation: floatElement 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-section .floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    animation-delay: 0s;
}

.hero-section .floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
    animation-delay: 2s;
}

.hero-section .floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    font-size: 2rem;
    animation-delay: 4s;
}

.hero-section .floating-element:nth-child(4) {
    top: 40%;
    right: 25%;
    font-size: 2.8rem;
    animation-delay: 6s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg) scale(1.1); 
        opacity: 0.15;
    }
    50% { 
        transform: translateY(10px) rotate(-3deg) scale(0.9); 
        opacity: 0.08;
    }
    75% { 
        transform: translateY(-15px) rotate(2deg) scale(1.05); 
        opacity: 0.12;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-content {
    flex: 1;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Hero Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Hero Button Enhancements */
.hero-section .btn-primary {
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(190, 61, 42, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--highlight-color) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-section .btn-primary:hover::before,
.hero-section .btn-primary:focus::before {
    left: 0;
}

.hero-section .btn-primary:hover,
.hero-section .btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 46, 80, 0.4), 0 0 20px rgba(16, 46, 80, 0.2);
    color: var(--white);
}

.hero-section .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(16, 46, 80, 0.3);
}

.hero-section .btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    border: none;
    font-size: 1.1rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 20px rgba(245, 196, 94, 0.3);
}

.hero-section .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-section .btn-secondary:hover::before,
.hero-section .btn-secondary:focus::before {
    left: 0;
}

.hero-section .btn-secondary:hover,
.hero-section .btn-secondary:focus {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 139, 72, 0.4), 0 0 20px rgba(231, 139, 72, 0.2);
}

.hero-section .btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(231, 139, 72, 0.3);
}

/* Hero Section Glow Effects */
.hero-section .hero-title {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 20px rgba(245, 196, 94, 0.1);
}

.hero-section .hero-subtitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Enhanced Hero Image Effects */
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(245, 196, 94, 0.1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 196, 94, 0.2);
}

/* Hero Section Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 5rem 0;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .hero-image img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-section .btn-primary,
    .hero-section .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        max-width: 85%;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Feature Icons - CSS Icons */
.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon::before {
    font-size: 2.5rem;
    color: var(--secondary-color);
    display: block;
    transition: var(--transition);
}

.feature-icon:hover::before {
    color: var(--accent-color);
}

/* Specific icon styles */
.icon-security::before {
    content: "🔒";
}

.icon-games::before {
    content: "🎮";
}

.icon-bonus::before {
    content: "🎁";
}

.icon-support::before {
    content: "💬";
}

.icon-mobile::before {
    content: "📱";
}

.icon-payment::before {
    content: "💳";
}

.icon-trophy::before {
    content: "🏆";
}

.icon-star::before {
    content: "⭐";
}

.icon-casino::before {
    content: "🎰";
}

.icon-dice::before {
    content: "🎲";
}

.icon-card::before {
    content: "🃏";
}

.icon-coin::before {
    content: "🪙";
}

.icon-fire::before {
    content: "🔥";
}

.icon-rocket::before {
    content: "🚀";
}

.icon-shield::before {
    content: "🛡️";
}

.icon-heart::before {
    content: "❤️";
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Login Section */
.login-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="login-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(16,46,80,0.02)"/><circle cx="20" cy="20" r="0.5" fill="rgba(16,46,80,0.015)"/><circle cx="80" cy="80" r="0.8" fill="rgba(16,46,80,0.015)"/><circle cx="30" cy="70" r="0.3" fill="rgba(16,46,80,0.01)"/><circle cx="70" cy="30" r="0.6" fill="rgba(16,46,80,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23login-pattern)"/></svg>');
    opacity: 0.3;
}

/* Floating Decorative Elements for Login Section */
.login-section .floating-element {
    position: absolute;
    opacity: 0.08;
    animation: floatElement 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    color: var(--primary-color);
}

.login-section .floating-element:nth-child(1) {
    top: 15%;
    left: 8%;
    font-size: 2.5rem;
    animation-delay: 0s;
}

.login-section .floating-element:nth-child(2) {
    top: 70%;
    right: 12%;
    font-size: 2rem;
    animation-delay: 3s;
}

.login-section .floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    font-size: 1.8rem;
    animation-delay: 6s;
}

.login-section .floating-element:nth-child(4) {
    top: 45%;
    right: 8%;
    font-size: 2.2rem;
    animation-delay: 9s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.08;
    }
    25% { 
        transform: translateY(-15px) rotate(3deg) scale(1.05); 
        opacity: 0.12;
    }
    50% { 
        transform: translateY(8px) rotate(-2deg) scale(0.95); 
        opacity: 0.06;
    }
    75% { 
        transform: translateY(-10px) rotate(1deg) scale(1.02); 
        opacity: 0.1;
    }
}

.login-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.login-content h2 {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(16, 46, 80, 0.1);
    animation: fadeInUp 1s ease-out;
}

.login-content p {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 46, 80, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 46, 80, 0.15);
    border-color: var(--secondary-color);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(245, 196, 94, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(245, 196, 94, 0.4);
}

.step h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.btn-login-large {
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    font-size: 1.3rem;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(190, 61, 42, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-login-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--highlight-color) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-login-large:hover::before,
.btn-login-large:focus::before {
    left: 0;
}

.btn-login-large:hover,
.btn-login-large:focus {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 46, 80, 0.4), 0 0 25px rgba(16, 46, 80, 0.2);
    color: var(--white);
}

.btn-login-large:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(16, 46, 80, 0.3);
}

/* Login Section Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 4rem 0;
    }
    
    .login-content h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .login-content p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .login-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .btn-login-large {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 3rem 0;
    }
    
    .login-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .login-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .login-steps {
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
    
    .btn-login-large {
        font-size: 1.1rem;
        padding: 1.1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Register Section */
.register-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="register-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(231,139,72,0.02)"/><circle cx="20" cy="20" r="0.5" fill="rgba(231,139,72,0.015)"/><circle cx="80" cy="80" r="0.8" fill="rgba(231,139,72,0.015)"/><circle cx="30" cy="70" r="0.3" fill="rgba(231,139,72,0.01)"/><circle cx="70" cy="30" r="0.6" fill="rgba(231,139,72,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23register-pattern)"/></svg>');
    opacity: 0.3;
}

/* Floating Decorative Elements for Register Section */
.register-section .floating-element {
    position: absolute;
    opacity: 0.08;
    animation: floatElement 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    color: var(--accent-color);
}

.register-section .floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 2.8rem;
    animation-delay: 0s;
}

.register-section .floating-element:nth-child(2) {
    top: 65%;
    right: 15%;
    font-size: 2.3rem;
    animation-delay: 4s;
}

.register-section .floating-element:nth-child(3) {
    bottom: 25%;
    left: 12%;
    font-size: 2rem;
    animation-delay: 8s;
}

.register-section .floating-element:nth-child(4) {
    top: 50%;
    right: 10%;
    font-size: 2.5rem;
    animation-delay: 12s;
}

.register-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.register-content h2 {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(16, 46, 80, 0.1);
    animation: fadeInUp 1s ease-out;
}

.register-content p {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.register-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.benefit {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 46, 80, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit:hover::before {
    transform: scaleX(1);
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 46, 80, 0.15);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(231, 139, 72, 0.3);
    transition: all 0.3s ease;
}

.benefit:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(231, 139, 72, 0.4);
}

.benefit-icon::before {
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.benefit h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.btn-register-large {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    font-size: 1.3rem;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(245, 196, 94, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-register-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-register-large:hover::before,
.btn-register-large:focus::before {
    left: 0;
}

.btn-register-large:hover,
.btn-register-large:focus {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 139, 72, 0.4), 0 0 25px rgba(231, 139, 72, 0.2);
    color: var(--white);
}

.btn-register-large:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(231, 139, 72, 0.3);
}

/* Register Section Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 4rem 0;
    }
    
    .register-content h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .register-content p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .register-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .benefit {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .btn-register-large {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 3rem 0;
    }
    
    .register-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .register-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .register-benefits {
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    
    .benefit {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .benefit h4 {
        font-size: 1.3rem;
    }
    
    .benefit p {
        font-size: 0.95rem;
    }
    
    .btn-register-large {
        font-size: 1.1rem;
        padding: 1.1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Game Cards with Icons */
.game-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.game-card:hover::before {
    transform: scaleX(1);
}

/* Game Icon Container */
.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.game-card:hover .game-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.game-icon::before {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.game-card:hover .game-icon::before {
    color: var(--accent-color);
}

/* Game Icon Types */
.icon-slot::before {
    content: "🎰";
}

.icon-blackjack::before {
    content: "🃏";
}

.icon-poker::before {
    content: "♠️";
}

.icon-roulette::before {
    content: "🎲";
}

.icon-baccarat::before {
    content: "🀄";
}

.icon-live::before {
    content: "🎥";
}

.icon-jackpot::before {
    content: "💰";
}

.icon-bingo::before {
    content: "🎯";
}

.icon-keno::before {
    content: "🔢";
}

.icon-scratch::before {
    content: "🎁";
}

.icon-arcade::before {
    content: "🕹️";
}

.icon-fortune::before {
    content: "🍀";
}

.icon-dragon::before {
    content: "🐉";
}

.icon-ocean::before {
    content: "🌊";
}

.icon-cosmic::before {
    content: "🚀";
}

.icon-royal::before {
    content: "👑";
}

.icon-gold::before {
    content: "🥇";
}

.game-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding: 0;
    font-weight: 600;
}

.game-card p {
    color: var(--text-light);
    line-height: 1.5;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.game-info {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 0.5rem;
}

.game-provider,
.game-type {
    background: var(--light-gray);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Game Categories */
.game-categories {
    margin-bottom: 3rem;
}

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

.category-tab {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 46, 80, 0.3);
}

.category-tab:active {
    transform: translateY(0);
}

/* Category tab icons */
.category-tab::before {
    font-size: 1.2rem;
}

/* Specific category tab icons */
.category-tab[data-category="all"]::before {
    content: "🎯";
}

.category-tab[data-category="slots"]::before {
    content: "🎰";
}

.category-tab[data-category="table"]::before {
    content: "🃏";
}

.category-tab[data-category="live"]::before {
    content: "🎥";
}

.category-tab[data-category="jackpot"]::before {
    content: "💰";
}

.category-tab[data-category="specialty"]::before {
    content: "🎲";
}

.game-section {
    margin-bottom: 4rem;
}

.game-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.game-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.form-group small {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* FAQ Styles */
.faq-search {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.faq-search input {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    min-width: 300px;
}

.search-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--accent-color);
}

.faq-categories {
    margin-bottom: 3rem;
}

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

.category-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

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

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    background: var(--light-gray);
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.faq-answer {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-contact {
    text-align: center;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.faq-contact h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-contact p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* 404 Error Page */
.error-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.error-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.helpful-links {
    margin-bottom: 4rem;
}

.helpful-links h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.link-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.link-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.link-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.search-section {
    text-align: center;
    margin-bottom: 4rem;
}

.search-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.search-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

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

.department-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.department-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.department-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.department-card ul {
    margin-left: 1.5rem;
}

.department-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.response-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.response-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.response-category p {
    color: var(--text-light);
    line-height: 1.6;
}

.response-category strong {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    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,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover,
.social-links a:focus {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: var(--white);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .error-page {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
    
    .search-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
    }
}

/* Loading and Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        margin: 0;
        padding: 20px;
    }
    
    .hero-section {
        background: none;
        color: black;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #FFFF00;
        --accent-color: #FF6600;
        --highlight-color: #FF0000;
        --text-dark: #000000;
        --text-light: #333333;
        --white: #FFFFFF;
        --light-gray: #F0F0F0;
        --border-color: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 

/* Responsive adjustments for game cards */
@media (max-width: 768px) {
    .game-card {
        min-height: 250px;
        padding: 1.5rem 1rem;
    }
    
    .game-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .game-icon::before {
        font-size: 2rem;
    }
    
    .game-card h3 {
        font-size: 1.2rem;
    }
    
    .game-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .game-card {
        min-height: 220px;
        padding: 1rem 0.8rem;
    }
    
    .game-icon {
        width: 60px;
        height: 60px;
    }
    
    .game-icon::before {
        font-size: 1.8rem;
    }
    
    .game-info {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .game-provider,
    .game-type {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
} 

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 196, 94, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 139, 72, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top::before {
    content: "↑";
    font-weight: bold;
}

/* Responsive adjustments for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
} 