/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.favorite-btn{
    background: none;
    border: none;
    font-size: 20px;
}

option {
    color: black;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #646cff, #747bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.logo h1 a {
    color: inherit;
    text-decoration: none;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-top: -5px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: #646cff;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #646cff, #747bff);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-play {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(45deg, #646cff, #747bff);
    color: white;
    box-shadow: 0 4px 15px rgba(100, 108, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 108, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-play {
    background: linear-gradient(45deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.modal-content p {
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    color: #cccccc;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.game-cards-preview {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.preview-card {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #646cff, #747bff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(100, 108, 255, 0.3);
}

.preview-card:nth-child(2) {
    animation-delay: -1s;
}

.preview-card:nth-child(3) {
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Virtual Currency Section */
.virtual-currency {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.virtual-currency h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.currency-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.currency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(100, 108, 255, 0.2);
}

.currency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.currency-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.currency-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Popular Games Section */
.popular-games {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.view-all {
    color: #646cff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #747bff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(100, 108, 255, 0.2);
}

.game-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #646cff, #747bff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 32px rgba(100, 108, 255, 0.3);
}

.game-card h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.game-card p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(100, 108, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(100, 108, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.game-card:hover .game-info::before {
    left: 100%;
}

.game-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 108, 255, 0.15);
    border-color: rgba(100, 108, 255, 0.25);
}

.game-type {
    background: linear-gradient(135deg, rgba(100, 108, 255, 0.2) 0%, rgba(100, 108, 255, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #646cff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(100, 108, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.game-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(100, 108, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-type:hover::before {
    opacity: 1;
}

.game-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    position: relative;
    animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
    0% { 
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
        transform: scale(1.05);
    }
}

/* Important Notice */
.important-notice {
    padding: 4rem 0;
    background: rgba(249, 115, 22, 0.05);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.notice-content {
    text-align: center;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #f97316;
}

.notice-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.disclaimer-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.disclaimer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.disclaimer-item h3 {
    margin-bottom: 1rem;
    color: #f97316;
}

.disclaimer-item p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-compliance {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.responsible-gaming-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.logo-group a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.logo-group a:active,
.logo-group a:focus,
.logo-group a:visited {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    color: inherit !important;
}

.logo-group a:hover {
    transform: translateY(-2px);
}

.logo-group a img {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.logo-group a:hover img {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.logo-group a:active img,
.logo-group a:focus img,
.logo-group a:visited img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.logo-group a span {
    font-size: 0.8rem;
    color: #cccccc;
    text-align: center;
    transition: color 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.logo-group a:hover span {
    color: #646cff;
}

.logo-group a:active span,
.logo-group a:focus span,
.logo-group a:visited span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.age-warning {
    text-align: center;
}

.age-warning h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.age-warning a {
    color: #646cff;
    text-decoration: none;
}

.age-warning a:hover {
    text-decoration: underline;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #646cff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 3rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Game Categories */
.game-categories {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, #646cff, #747bff);
    color: white;
    border-color: #646cff;
}

/* Games Section */
.games-section {
    padding: 3rem 0;
}

.games-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.games-section > .container > p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsible Gaming Content */
.responsible-content {
    padding: 2rem 0;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.8rem;
}

.content-section h3 {
    margin-bottom: 1rem;
    color: #646cff;
    font-size: 1.3rem;
}

.content-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.safety-features,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature,
.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.feature h3,
.tip-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature p,
.tip-card p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0;
}

.warning-signs {
    list-style: none;
    padding-left: 0;
}

.warning-signs li {
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid #dc2626;
    padding: 1rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.support-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.organization {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.organization h3 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.organization p {
    margin-bottom: 1rem;
}

.organization a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.organization a:hover {
    text-decoration: underline;
}

.help-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.contact-card h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.control-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.control {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.control h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.control p {
    color: #cccccc;
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-info {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-card p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.contact-details {
    text-align: left;
}

.contact-details a {
    color: #646cff;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details span {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-details address {
    font-style: normal;
    line-height: 1.5;
    color: #cccccc;
}

/* Contact Form */
.contact-form-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: #cccccc;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #646cff;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #646cff;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #646cff;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0;
}

.faq-item a {
    color: #646cff;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.business-hours h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.hours-card h3 {
    margin-bottom: 1.5rem;
    color: #646cff;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.hour-item:last-child {
    border-bottom: none;
}

/* Legal Document Styles */
.terms-content,
.privacy-redirect,
.gdpr-overview {
    padding: 2rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section,
.info-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section h2,
.info-section h2 {
    color: #646cff;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.terms-section h3,
.info-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.terms-section p,
.info-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul,
.info-section ul {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terms-section li,
.info-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.terms-section a,
.info-section a {
    color: #646cff;
    text-decoration: none;
}

.terms-section a:hover,
.info-section a:hover {
    text-decoration: underline;
}

/* Privacy Policy Redirect */
.redirect-content {
    max-width: 600px;
    margin: 0 auto;
}

.redirect-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.redirect-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.redirect-card h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.redirect-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.privacy-highlights {
    text-align: left;
    margin: 2rem 0;
}

.privacy-highlights h3 {
    color: #646cff;
    margin-bottom: 1rem;
}

.privacy-highlights ul {
    list-style: none;
    padding-left: 0;
}

.privacy-highlights li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.redirect-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.policy-summary {
    text-align: left;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-privacy {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contact-privacy h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.contact-privacy p {
    margin-bottom: 0.5rem;
}

.contact-privacy a {
    color: #3b82f6;
}

/* Data Types */
.data-types {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.data-types h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.data-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.data-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.data-card h3 {
    margin-bottom: 1rem;
    color: #646cff;
}

.data-card p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Privacy Rights */
.privacy-rights {
    padding: 3rem 0;
}

.privacy-rights h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-rights > .container > p {
    text-align: center;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.right-item {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.right-item h3 {
    color: #22c55e;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.right-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* GDPR Styles */
.gdpr-overview,
.data-processing,
.gdpr-rights,
.exercise-rights,
.gdpr-contact,
.international-transfers,
.policy-updates {
    padding: 3rem 0;
}

.gdpr-overview:nth-child(odd),
.data-processing:nth-child(odd),
.exercise-rights:nth-child(odd),
.international-transfers:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.overview-content,
.processing-grid,
.rights-detailed,
.exercise-content {
    max-width: 900px;
    margin: 0 auto;
}

.compliance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #646cff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0;
}

.processing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.processing-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.processing-section h3 {
    color: #646cff;
    margin-bottom: 1rem;
}

.processing-section ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.processing-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.rights-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.right-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.right-card h3 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.right-card p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0;
}

.exercise-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #646cff, #747bff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    color: white;
}

.step h3 {
    margin-bottom: 1rem;
    color: #646cff;
}

.step p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.safeguards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.safeguard {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.safeguard h3 {
    color: #22c55e;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.safeguard p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Legal Notice Styles */
.company-info {
    padding: 2rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.company-details {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1rem;
}

.company-details p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.company-details address {
    font-style: normal;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    line-height: 1.5;
}

.company-details a {
    color: #3b82f6;
    text-decoration: none;
}

.company-details a:hover {
    text-decoration: underline;
}

.disclaimer-card {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.disclaimer-card h3 {
    color: #f97316;
    margin-bottom: 1rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.compliance-item {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.compliance-item h3 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.compliance-item p {
    margin-bottom: 0;
}

.compliance-item a {
    color: #22c55e;
}

.liability-content {
    margin-top: 1rem;
}

.legal-contact {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.legal-contact h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.legal-contact address {
    font-style: normal;
    color: #cccccc;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Cookie Policy Styles */
.cookie-overview,
.cookie-types,
.cookie-management,
.third-party-cookies,
.cookie-consent,
.cookie-retention,
.cookie-updates {
    padding: 3rem 0;
}

.cookie-overview:nth-child(odd),
.cookie-types:nth-child(odd),
.third-party-cookies:nth-child(odd),
.cookie-retention:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.cookie-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #646cff;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.cookie-category h3 {
    color: #646cff;
    margin-bottom: 1rem;
}

.cookie-category p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-examples {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-examples h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cookie-examples ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #cccccc;
}

.cookie-examples li {
    margin-bottom: 0.3rem;
}

.management-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.option-card h3 {
    margin-bottom: 1rem;
    color: #646cff;
}

.option-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.browser-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.browser-links a {
    color: #646cff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(100, 108, 255, 0.1);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.browser-links a:hover {
    background: rgba(100, 108, 255, 0.2);
}

.impact-warning {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.impact-warning h3 {
    color: #f97316;
    margin-bottom: 1rem;
}

.impact-warning ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.impact-warning li {
    margin-bottom: 0.5rem;
}

.third-party-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.service-card h3 {
    color: #646cff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-card a {
    color: #646cff;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline;
}

.consent-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.consent-info,
.consent-management {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.legal-bases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.basis-item {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1rem;
}

.basis-item h4 {
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.basis-item p {
    color: #cccccc;
    margin-bottom: 0;
}

.consent-management ul {
    color: #cccccc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.consent-management li {
    margin-bottom: 0.5rem;
}

.retention-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem;
}

.table-header {
    background: rgba(100, 108, 255, 0.2);
    font-weight: 600;
    color: #646cff;
}

.table-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.table-row:last-child {
    border-bottom: none;
}

.updates-content ul {
    color: #cccccc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.updates-content li {
    margin-bottom: 0.5rem;
}

.cookie-contact {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-contact h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.cookie-contact .contact-details p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.cookie-contact a {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
        width: 100%;
        order: 3;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .currency-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .responsible-gaming-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .redirect-buttons {
        flex-direction: column;
    }
    
    .data-grid,
    .rights-grid,
    .compliance-features,
    .processing-grid,
    .rights-detailed,
    .exercise-steps,
    .safeguards {
        grid-template-columns: 1fr;
    }
    
    .cookie-benefits,
    .management-options,
    .third-party-services,
    .consent-content {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .table-header > div,
    .table-row > div {
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .popular-games,
    .virtual-currency,
    .important-notice {
        padding: 2rem 0;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .browser-links {
        flex-direction: column;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #646cff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal-overlay {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}