* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #581c87, #1e3a8a, #312e81);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: black;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #fbbf24;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    position: relative;
}

.language-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.language-btn:hover {
    background: rgba(255,255,255,0.1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    min-width: 150px;
    display: none;
}

.language-dropdown.show {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.language-dropdown a:hover {
    background: #f3f4f6;
}

.auth-buttons {
    display: none;
    gap: 0.5rem;
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.mobile-menu-btn {
    background: transparent;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu.show {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: #fbbf24;
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #581c87, #1e3a8a, #312e81);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
}

.bg-element-1 {
    width: 128px;
    height: 128px;
    background: #fbbf24;
    top: 80px;
    left: 40px;
    animation: pulse 2s infinite;
}

.bg-element-2 {
    width: 96px;
    height: 96px;
    background: #f59e0b;
    top: 160px;
    right: 80px;
    animation: bounce 2s infinite;
}

.bg-element-3 {
    width: 64px;
    height: 64px;
    background: #10b981;
    bottom: 80px;
    left: 25%;
    animation: ping 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0,-30px,0); }
    70% { transform: translate3d(0,-15px,0); }
    90% { transform: translate3d(0,-4px,0); }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    space-y: 2rem;
}

.hero-headlines {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 2xl;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta-secondary:hover {
    background: white;
    color: black;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-value {
    font-size: 2rem;
    font-weight: bold;
    color: #fbbf24;
}

.trust-label {
    font-size: 14px;
    color: #d1d5db;
}

.hero-visual {
    position: relative;
}

.bonus-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 1px solid #4b5563;
    border-radius: 24px;
    padding: 2rem;
    transform: rotate(3deg);
    transition: transform 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bonus-card:hover {
    transform: rotate(0deg);
}

.bonus-content {
    text-align: center;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.bonus-amounts {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-main, .bonus-spins {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
}

.bonus-main {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
}

.bonus-spins {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
}

.bonus-type {
    font-size: 14px;
}

.bonus-breakdown {
    margin-bottom: 1.5rem;
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    color: white;
    margin-bottom: 0.5rem;
}

.bonus-highlight {
    color: #fbbf24;
    font-weight: bold;
}

.btn-claim {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-claim:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    padding: 5rem 0;
}

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

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: #8b5cf6;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

.trust-badges {
    margin-top: 4rem;
    text-align: center;
}

.trust-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0.6;
}

.badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 1.125rem;
    font-weight: bold;
    color: #374151;
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, #312e81, #8b5cf6, #ec4899);
    color: white;
    padding: 5rem 0;
}

.section-title-white {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.section-description-white {
    font-size: 1.25rem;
    color: #e5e7eb;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.7;
}

.game-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 2rem 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
}

.tab-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.tab-btn.active {
    background: #fbbf24;
    color: black;
}

.tab-btn:hover:not(.active) {
    background: rgba(255,255,255,0.1);
}

.game-content {
    display: none;
    margin-top: 2rem;
}

.game-content.active {
    display: block;
}

.game-content-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.game-info {
    margin-bottom: 1.5rem;
}

.game-category-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.game-description {
    font-size: 1.125rem;
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-games h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.game-list {
    display: grid;
    gap: 0.75rem;
}

.game-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 1rem;
}

.game-item h5 {
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.game-stats {
    display: grid;
    gap: 0.25rem;
    font-size: 14px;
    color: #d1d5db;
}

.game-stats span {
    display: flex;
    justify-content: space-between;
}

.game-stats strong {
    color: #fbbf24;
}

.game-highlights {
    display: grid;
    gap: 1.5rem;
}

.rtp-card {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.rtp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rtp-icon {
    font-size: 3rem;
}

.rtp-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.rtp-card p {
    margin-bottom: 1rem;
}

.rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

.rtp-item {
    text-align: center;
}

.rtp-value {
    font-size: 1.875rem;
    font-weight: bold;
}

.rtp-game {
    font-size: 14px;
}

.features-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.features-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.features-list {
    display: grid;
    gap: 0.75rem;
}

.feature-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e7eb;
}

.providers-section {
    margin-top: 4rem;
    text-align: center;
}

.providers-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.provider-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.provider-card:hover {
    background: rgba(255,255,255,0.2);
}

.provider-logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.provider-name {
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.provider-rep {
    font-size: 12px;
    color: #fbbf24;
}

.games-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-games {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-games:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #000000);
    color: white;
}

.newsletter {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    padding: 3rem 0;
    text-align: center;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.newsletter-text {
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    max-width: 24rem;
    margin: 0 auto;
}

.newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: #d1d5db;
}

.newsletter-btn {
    background: #fbbf24;
    color: black;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-btn:hover {
    background: #f59e0b;
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-company {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: black;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: grid;
    gap: 0.75rem;
    font-size: 14px;
}

.contact-item {
    color: #9ca3af;
}

.contact-live {
    color: #10b981;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.link-column {
    margin-bottom: 1.5rem;
}

.link-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.link-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.link-list a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.link-list a:hover {
    color: white;
}

.footer-social .languages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.lang-item {
    color: #9ca3af;
}

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

.social-link {
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
    font-size: 12px;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

.payment-methods {
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-title {
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 0.75rem;
    font-size: 14px;
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 12px;
}

.payment-method {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.legal-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 12px;
}

.legal-item {
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright {
    font-size: 12px;
    color: #9ca3af;
}

.responsible-gambling {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

.rg-text {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 1rem;
}

.rg-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 12px;
}

.rg-link {
    color: #9ca3af;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.rg-link:hover {
    color: white;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #581c87, #1e3a8a, #312e81);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.about-hero-content {
    max-width: 4xl;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.125rem;
    color: #e5e7eb;
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto;
}

.our-story {
    padding: 5rem 0;
    background: #f9fafb;
}

.story-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.story-text {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.milestone-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.milestone-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.milestone-card:hover {
    transform: translateY(-4px);
}

.milestone-number {
    font-size: 2rem;
    font-weight: bold;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.milestone-text {
    color: #6b7280;
    font-weight: 500;
}

.mission-values {
    padding: 5rem 0;
}

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

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-description {
    color: #6b7280;
    line-height: 1.6;
}

.licensing {
    padding: 5rem 0;
    background: #f9fafb;
}

.licensing-content {
    margin-top: 3rem;
}

.licensing-text {
    margin-bottom: 3rem;
}

.licensing-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.licenses-grid {
    display: grid;
    gap: 2rem;
}

.license-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.license-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.license-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.license-number {
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.license-description {
    color: #6b7280;
    line-height: 1.6;
}

.software-partners {
    padding: 5rem 0;
}

.partners-description {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 48rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: translateY(-4px);
}

.partner-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.partner-name {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.partner-specialty {
    color: #8b5cf6;
    font-size: 14px;
}

.team-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.team-description {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 48rem;
}

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

.team-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-4px);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info, .contact-form-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.contact-text {
    color: #6b7280;
    line-height: 1.6;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input, .form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.form-submit {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.about-cta {
    background: linear-gradient(135deg, #581c87, #1e3a8a, #312e81);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 4xl;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Additional French-specific styling if needed */
.talismania-section {
    background: linear-gradient(135deg, #581c87, #1e3a8a, #312e81);
    color: white;
    padding: 5rem 0;
}

.talismania-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.talismania-card:hover {
    transform: translateY(-4px);
}

.talismania-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.talismania-rating {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.talismania-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

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

.btn-talismania-primary {
    background: white;
    color: #f59e0b;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-talismania-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-talismania-primary:hover {
    background: #f3f4f6;
}

.btn-talismania-secondary:hover {
    background: white;
    color: #f59e0b;
}

/* French language adjustments */
.hero-title-fr {
    font-size: 3rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title-fr {
        font-size: 4rem;
    }
}

@media (max-width: 639px) {
    .talismania-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title-fr {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (min-width: 640px) {
    .auth-buttons {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .providers-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .licenses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .game-content-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 3fr 1fr;
    }
}

@media (max-width: 639px) {
    .game-tabs {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        text-align: center;
    }
    
    .bonus-amounts {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
