/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A33 100%);
    margin: 15% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #6366F1;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-body p {
    color: #E5E7EB;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.age-verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
    padding: 20px;
    z-index: 9999;
    border-top: 2px solid #6366F1;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    color: #E5E7EB;
    margin: 0;
}

.cookie-text a {
    color: #6366F1;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #E5E7EB;
    border: 2px solid #6B7280;
}

.btn-secondary:hover {
    background: #6B7280;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header */
.header {
    background: rgba(26, 26, 51, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #6366F1;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    transform: scale(1.1);
}

.burger-menu:focus {
    outline: 2px solid #6366F1;
    outline-offset: 2px;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #E5E7EB;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Navigation */
.nav-menu-mobile {
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 51, 0.98);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 20px 0;
    margin: 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-top: 1px solid #6366F1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-menu-mobile.active {
    transform: translateY(70px);
}

.nav-menu-mobile .nav-item {
    margin: 0;
    padding: 0;
}

.nav-menu-mobile .nav-link {
    display: block;
    padding: 15px 30px;
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.nav-menu-mobile .nav-link:hover {
    color: #6366F1;
    background-color: rgba(99, 102, 241, 0.1);
    padding-left: 40px;
}

.nav-menu-mobile .nav-item:last-child .nav-link {
    border-bottom: none;
}

/* Burger Menu Animation */
.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 51, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #E5E7EB;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(99, 102, 241, 0.2);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
    position: relative;
    overflow: hidden;
}

.hero::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="casino" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236366F1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23casino)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E5E7EB;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.casino-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.poker-chip {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

.playing-card {
    position: absolute;
    top: 100px;
    right: 30px;
    width: 60px;
    height: 80px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1A1A33;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite 1s;
}

.lucky-seven {
    position: absolute;
    bottom: 50px;
    left: 100px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Casino Showcase */
.casino-showcase {
    padding: 80px 0;
    background: #0F0F23;
}

.casino-showcase .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-rows: 1fr;
    gap: 30px;
    align-items: stretch;
}

.casino-card {
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: #6366F1;
}

.casino-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #FCD34D;
    font-size: 1.2rem;
}

.rating-text {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.casino-features {
    flex-grow: 1;
}

.casino-features ul {
    list-style: none;
    margin-bottom: 25px;
}

.casino-features li {
    color: #E5E7EB;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.casino-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    margin-top: auto;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.welcome-text {
    font-size: 1.1rem;
    color: #E5E7EB;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
.footer-compliance {
    padding: 20px 0;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    background: #C8C8C84F;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.badge a:hover {
    opacity: 0.8;
}

.footer-main {
    background: #0A0A0A;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-description {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #E5E7EB;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A33 100%);
    border: 1px solid #6366F1;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #6366F1;
    transform: translateX(5px);
}


.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin: 0;
}

.footer-disclaimer {
    color: #6B7280 !important;
    font-size: 0.85rem !important;
    font-style: italic;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Reviews Page Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #E5E7EB;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-section {
    padding: 80px 0;
    background: #0F0F23;
}

.review-card {
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
    border-color: #6366F1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.casino-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #FCD34D;
    font-size: 1.2rem;
}

.rating-score {
    color: #9CA3AF;
    font-weight: 600;
}

.review-meta {
    text-align: right;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.reviewer {
    font-weight: 600;
    color: #E5E7EB;
}

.review-date {
    display: block;
    margin-top: 5px;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    color: #E5E7EB;
    line-height: 1.7;
    font-size: 1rem;
}

.review-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tag.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.tag.neutral {
    background: rgba(156, 163, 175, 0.2);
    color: #9CA3AF;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.tag.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Expert Reviews */
.expert-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.expert-review {
    background: rgba(26, 26, 51, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.expert-info {
    margin-bottom: 30px;
}

.expert-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.expert-name {
    color: #6366F1;
    font-weight: 600;
    font-size: 1.1rem;
}

.expert-content p {
    color: #E5E7EB;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.expert-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.criteria-item h4 {
    color: #6366F1;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.criteria-item p {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Active Navigation Link */
.nav-link.active {
    color: #6366F1;
    font-weight: 600;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #0F0F23;
}

.legal-document {
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    color: #6366F1;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: #E5E7EB;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.legal-document p {
    color: #E5E7EB;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-document ul {
    color: #E5E7EB;
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-document a {
    color: #6366F1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-document a:hover {
    color: #8B5CF6;
    text-decoration: underline;
}

.legal-document strong {
    color: #ffffff;
    font-weight: 600;
}

/* Cookie Table Styles */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(26, 26, 51, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th {
    background: #6366F1;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    color: #E5E7EB;
    font-size: 0.9rem;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background: rgba(99, 102, 241, 0.1);
}

/* FAQ Styles */
.faq-content {
    padding: 80px 0;
    background: #0F0F23;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1A1A33 0%, #2D1B69 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #6366F1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    color: #6366F1;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 10px 30px 25px 30px;
    opacity: 1;
}

.faq-answer p {
    color: #E5E7EB;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-answer a {
    color: #6366F1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #8B5CF6;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-menu-mobile {
        display: block;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-logo .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-logo img {
        width: 35px;
        height: 35px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .casino-showcase .container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .compliance-badges {
        gap: 15px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
}

/* Image Styles */
.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.casino-logo-img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.compliance-img {
    width: 80px;
    height: 40px;
    object-fit: contain;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .hero-image {
        max-width: 300px;
    }
    
    .casino-logo-img {
        width: 100px;
        height: 50px;
    }
    
    .compliance-img {
        width: 60px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 250px;
    }
    
    .nav-logo .logo-text {
        font-size: 1rem;
    }
    
    .nav-logo img {
        width: 30px;
        height: 30px;
    }
    
    .burger-menu {
        width: 25px;
        height: 25px;
    }
    
    .nav-menu-mobile .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .casino-logo-img {
        width: 80px;
        height: 40px;
    }
    
    .compliance-img {
        width: 50px;
        height: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A33 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-hero p {
    font-size: 1.2rem;
    color: #E5E7EB;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content, .about-content {
    padding: 80px 0;
    background: #1A1A33;
}

.contact-info, .about-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2, .about-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-info p, .about-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #E5E7EB;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.contact-method {
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A33 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #6366F1;
}

.contact-method h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-method p {
    margin-bottom: 10px;
    color: #E5E7EB;
}

.contact-method a {
    color: #6366F1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-method a:hover {
    color: #8B5CF6;
    text-decoration: underline;
}

.response-time {
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A33 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #6366F1;
    margin-top: 40px;
}

.response-time h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #E5E7EB;
    border-bottom: 1px solid #2D1B69;
}

.about-features li:last-child {
    border-bottom: none;
}

/* Responsive styles for new pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .contact-info h2, .about-info h2 {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method, .response-time {
        padding: 20px;
    }
}