/* ===== SilverFoxLuck - Main Styles ===== */

/* ===== CSS Variables ===== */
:root {
    --sfl-bg-dark: #1a1025;
    --sfl-bg-purple: #2d1b4e;
    --sfl-bg-brown: #3d2817;
    --sfl-accent-gold: #ffd700;
    --sfl-accent-orange: #ff8c00;
    --sfl-text-light: #f5f5f5;
    --sfl-text-muted: #b8b8b8;
    --sfl-border-color: #4a3060;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--sfl-bg-dark) 0%, var(--sfl-bg-purple) 50%, var(--sfl-bg-brown) 100%);
    color: var(--sfl-text-light);
    min-height: 100vh;
    line-height: 1.6;
}

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

/* ===== Cookie Banner ===== */
.sfl-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--sfl-bg-purple), var(--sfl-bg-brown));
    border-top: 3px solid var(--sfl-accent-gold);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sfl-cookie-banner.sfl-show {
    transform: translateY(0);
}

.sfl-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sfl-cookie-content h3 {
    color: var(--sfl-accent-gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sfl-cookie-content p {
    flex: 1;
    min-width: 250px;
    color: var(--sfl-text-light);
}

.sfl-cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sfl-cookie-accept {
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    color: var(--sfl-bg-dark);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sfl-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.sfl-cookie-policy {
    color: var(--sfl-accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
}

.sfl-cookie-policy:hover {
    text-decoration: underline;
}

/* ===== Header ===== */
.sfl-header {
    background: rgba(26, 16, 37, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--sfl-border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.sfl-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sfl-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.sfl-logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sfl-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sfl-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sfl-nav-link {
    color: var(--sfl-text-light);
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.sfl-nav-link:hover,
.sfl-nav-link.sfl-active {
    color: var(--sfl-accent-gold);
    border-color: var(--sfl-accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

.sfl-cta-button {
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    color: var(--sfl-bg-dark);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sfl-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5);
}

/* ===== Mobile Burger Menu ===== */
.sfl-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 102;
}

.sfl-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--sfl-accent-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sfl-burger.sfl-active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.sfl-burger.sfl-active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.sfl-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--sfl-bg-dark) 0%, var(--sfl-bg-purple) 50%, var(--sfl-bg-brown) 100%);
    z-index: 101;
    padding: 100px 40px 40px;
    transition: left 0.3s ease;
}

.sfl-mobile-menu.sfl-active {
    left: 0;
}

.sfl-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--sfl-accent-gold);
    border-radius: 50%;
    color: var(--sfl-accent-gold);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sfl-mobile-close:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

.sfl-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sfl-mobile-nav a {
    color: var(--sfl-text-light);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.sfl-mobile-nav a:hover,
.sfl-mobile-nav a.sfl-active {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--sfl-accent-gold);
    color: var(--sfl-accent-gold);
}

.sfl-mobile-nav .sfl-cta-button {
    text-align: center;
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
}

.sfl-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sfl-mobile-overlay.sfl-active {
    display: block;
    opacity: 1;
}

/* ===== Hero Section ===== */
.sfl-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('image/bg-hero.png');
    background-size: cover;
    background-position: center;
}

.sfl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 16, 37, 0.5);
}

.sfl-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sfl-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sfl-hero-subtitle {
    font-size: 1.5rem;
    color: var(--sfl-text-light);
    margin-bottom: 40px;
}

.sfl-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.sfl-btn-primary,
.sfl-btn-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sfl-btn-primary {
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    color: var(--sfl-bg-dark);
}

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

.sfl-btn-primary:hover,
.sfl-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

/* ===== Section Styles ===== */
.sfl-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sfl-section-title {
    font-size: 2.5rem;
    color: var(--sfl-accent-gold);
    position: relative;
    display: inline-block;
}

.sfl-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
}

/* ===== About Section ===== */
.sfl-about {
    padding: 80px 0;
    background: rgba(45, 27, 78, 0.3);
}

.sfl-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.sfl-about-header {
    position: relative;
}

.sfl-about-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--sfl-accent-gold);
    line-height: 1.2;
    margin: 0;
}

.sfl-about-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
}

.sfl-about-content {
    color: var(--sfl-text-light);
}

.sfl-about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* ===== Stats Section ===== */
.sfl-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(61, 40, 23, 0.5), rgba(45, 27, 78, 0.5));
}

.sfl-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.sfl-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.sfl-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--sfl-accent-gold);
}

.sfl-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--sfl-accent-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.sfl-stat-label {
    font-size: 1rem;
    color: var(--sfl-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Features Section ===== */
.sfl-features {
    padding: 80px 0;
}

.sfl-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sfl-feature-card {
    background: rgba(45, 27, 78, 0.4);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sfl-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--sfl-accent-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.sfl-feature-title {
    font-size: 1.3rem;
    color: var(--sfl-accent-gold);
    margin-bottom: 15px;
}

.sfl-feature-desc {
    color: var(--sfl-text-muted);
    line-height: 1.6;
}

/* ===== Games Section ===== */
.sfl-games {
    padding: 80px 0;
    background: rgba(45, 27, 78, 0.3);
}

.sfl-games-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sfl-game-card {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: center;
    background: rgba(61, 40, 23, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.sfl-game-card:hover {
    transform: scale(1.02);
    border-color: var(--sfl-accent-gold);
}

.sfl-game-image {
    flex-shrink: 0;
    width: 400px;
}

.sfl-game-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.sfl-game-info {
    flex: 1;
    padding: 30px;
}

.sfl-game-title {
    font-size: 2rem;
    color: var(--sfl-accent-gold);
    margin-bottom: 15px;
}

.sfl-game-desc {
    color: var(--sfl-text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.sfl-game-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    color: var(--sfl-bg-dark);
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sfl-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5);
}

/* ===== CTA Section ===== */
.sfl-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.6), rgba(61, 40, 23, 0.6));
    text-align: center;
}

.sfl-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.sfl-cta-title {
    font-size: 2.5rem;
    color: var(--sfl-accent-gold);
    margin-bottom: 20px;
}

.sfl-cta-desc {
    font-size: 1.2rem;
    color: var(--sfl-text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.sfl-cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    color: var(--sfl-bg-dark);
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sfl-cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.5);
}

/* ===== Footer ===== */
.sfl-footer {
    background: rgba(26, 16, 37, 0.95);
    border-top: 2px solid var(--sfl-border-color);
    padding: 30px 0 20px;
}

.sfl-disclaimer-banner {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 140, 0, 0.2));
    border: 2px solid var(--sfl-accent-orange);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--sfl-accent-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.sfl-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sfl-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.sfl-footer-links a {
    color: var(--sfl-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.sfl-footer-links a:hover {
    color: var(--sfl-accent-gold);
}

.sfl-footer-copyright {
    color: var(--sfl-text-muted);
    text-align: center;
    font-size: 0.9rem;
}

/* ===== Legal Pages Styles ===== */
.sfl-legal-page {
    min-height: calc(100vh - 200px);
    padding: 120px 0 80px;
}

.sfl-legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(45, 27, 78, 0.4);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.sfl-legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.sfl-legal-header h1 {
    font-size: 2.5rem;
    color: var(--sfl-accent-gold);
    margin-bottom: 15px;
}

.sfl-legal-header p {
    color: var(--sfl-text-muted);
}

.sfl-legal-content h2 {
    color: var(--sfl-accent-gold);
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.sfl-legal-content h3 {
    color: var(--sfl-text-light);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.sfl-legal-content p,
.sfl-legal-content ul {
    color: var(--sfl-text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.sfl-legal-content ul {
    padding-left: 25px;
}

.sfl-legal-content li {
    margin-bottom: 10px;
}

.sfl-legal-content a {
    color: var(--sfl-accent-gold);
    text-decoration: none;
}

.sfl-legal-content a:hover {
    text-decoration: underline;
}

.sfl-legal-content strong {
    color: var(--sfl-text-light);
}

.sfl-legal-update {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--sfl-accent-gold);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0 10px 10px 0;
}

.sfl-legal-update p {
    margin: 0;
    color: var(--sfl-text-light);
}

.sfl-back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--sfl-accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.sfl-back-link:hover {
    text-decoration: underline;
}

.sfl-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.sfl-cookie-table th,
.sfl-cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.sfl-cookie-table th {
    background: rgba(255, 215, 0, 0.1);
    color: var(--sfl-accent-gold);
    font-weight: 600;
}

.sfl-cookie-table td {
    color: var(--sfl-text-muted);
}

/* ===== Contact Page Styles ===== */
.sfl-contact-page {
    min-height: calc(100vh - 200px);
    padding: 120px 0 80px;
}

.sfl-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.sfl-contact-header h1 {
    font-size: 3rem;
    color: var(--sfl-accent-gold);
    margin-bottom: 15px;
}

.sfl-contact-header p {
    color: var(--sfl-text-muted);
    font-size: 1.2rem;
}

.sfl-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.sfl-contact-info {
    background: rgba(45, 27, 78, 0.4);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.sfl-contact-info h2 {
    color: var(--sfl-accent-gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.sfl-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.sfl-contact-details h3 {
    color: var(--sfl-text-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sfl-contact-details p,
.sfl-contact-details a {
    color: var(--sfl-text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.sfl-contact-details a:hover {
    color: var(--sfl-accent-gold);
}

.sfl-contact-form {
    background: rgba(61, 40, 23, 0.4);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.sfl-contact-form h2 {
    color: var(--sfl-accent-gold);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.sfl-form-group {
    margin-bottom: 20px;
}

.sfl-form-group label {
    display: block;
    color: var(--sfl-text-light);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.sfl-form-group input,
.sfl-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(26, 16, 37, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--sfl-text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sfl-form-group input:focus,
.sfl-form-group textarea:focus {
    outline: none;
    border-color: var(--sfl-accent-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.sfl-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.sfl-form-group input::placeholder,
.sfl-form-group textarea::placeholder {
    color: var(--sfl-text-muted);
}

.sfl-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    color: var(--sfl-bg-dark);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sfl-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.5);
}

.sfl-submit-btn:active {
    transform: translateY(0);
}

/* ===== Game Page Styles ===== */
.sfl-game-page {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 40px;
}

.sfl-game-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(26, 16, 37, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--sfl-accent-gold);
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.2);
}

.sfl-game-frame-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.sfl-game-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sfl-back-btn {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    color: var(--sfl-bg-dark);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sfl-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5);
}

/* ===== Modal Styles ===== */
.sfl-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.sfl-modal.sfl-show {
    display: block;
}

.sfl-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sfl-modal.sfl-show .sfl-modal-overlay {
    opacity: 1;
}

.sfl-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    min-width: 320px;
    max-width: 500px;
    width: 90%;
    background: linear-gradient(135deg, var(--sfl-bg-purple), var(--sfl-bg-brown));
    border-radius: 20px;
    border: 2px solid var(--sfl-accent-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sfl-modal.sfl-show .sfl-modal-content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.sfl-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.sfl-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--sfl-accent-gold);
}

.sfl-modal-close {
    background: none;
    border: none;
    color: var(--sfl-text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sfl-modal-close:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--sfl-accent-gold);
}

.sfl-modal-body {
    padding: 25px;
    text-align: center;
}

.sfl-modal-body p {
    margin: 0;
    color: var(--sfl-text-light);
    line-height: 1.6;
}

.sfl-modal-footer {
    padding: 15px 25px 25px;
    text-align: center;
}

.sfl-modal-btn {
    background: linear-gradient(135deg, var(--sfl-accent-gold), var(--sfl-accent-orange));
    color: var(--sfl-bg-dark);
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sfl-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .sfl-hero-title {
        font-size: 2rem;
    }

    .sfl-hero-subtitle {
        font-size: 1.1rem;
    }

    /* Hide desktop nav */
    .sfl-nav {
        display: none;
    }

    /* Show burger menu */
    .sfl-burger {
        display: flex;
    }

    /* Show mobile menu */
    .sfl-mobile-menu {
        display: block;
    }

    .sfl-logo-text {
        font-size: 1.2rem;
    }

    .sfl-about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .sfl-about-title {
        font-size: 2rem;
    }

    .sfl-about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sfl-game-card {
        flex-direction: column;
    }

    .sfl-game-image {
        width: 100%;
    }

    .sfl-game-image img {
        height: 380px;
    }

    .sfl-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sfl-features-grid {
        grid-template-columns: 1fr;
    }

    .sfl-section-title {
        font-size: 1.8rem;
    }

    /* Legal pages mobile styles */
    .sfl-legal-container {
        padding: 30px 20px;
    }

    .sfl-legal-header h1 {
        font-size: 1.8rem;
    }

    .sfl-cookie-table {
        font-size: 0.9rem;
    }

    .sfl-cookie-table th,
    .sfl-cookie-table td {
        padding: 10px;
    }

    /* Contact page mobile styles */
    .sfl-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sfl-contact-header h1 {
        font-size: 2rem;
    }

    .sfl-contact-info,
    .sfl-contact-form {
        padding: 25px;
    }

    /* Game page mobile styles */
    .sfl-game-page {
        padding-top: 80px;
    }
}
