/* Global Styles */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --primary-light: #f4d87d;
    --secondary-color: #1a1a2e;
    --secondary-light: #16213e;
    --accent-color: #e94560;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-dark: #2d2d2d;
    --bg-dark: #0f0f1e;
    --bg-card: #1e1e3f;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d87d 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lang-option {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 20px;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-option:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.lang-option.active {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(15, 15, 30, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item strong {
    display: block;
    font-size: 1.3rem;
}

.stat-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.card-stack {
    position: relative;
    width: 300px;
    height: 400px;
}

.playing-card {
    position: absolute;
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: cardFloat 3s ease-in-out infinite;
    border: 2px solid #e0e0e0;
    padding: 15px;
}

.card-corner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.card-corner.top-left {
    top: 12px;
    left: 12px;
}

.card-corner.bottom-right {
    bottom: 12px;
    right: 12px;
    transform: rotate(180deg);
}

.card-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2px;
    font-family: Georgia, serif;
}

.card-corner i,
.card-suit {
    font-size: 1.2rem;
}

.card-suit {
    font-family: Arial, sans-serif;
}

.card-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-center i,
.card-suit-large {
    font-size: 5rem;
}

.card-suit-large {
    font-family: Arial, sans-serif;
    line-height: 1;
}

/* Suit colors */
.playing-card.hearts .card-value,
.playing-card.hearts i,
.playing-card.hearts .card-suit,
.playing-card.hearts .card-suit-large {
    color: #e74c3c;
}

.playing-card.diamonds .card-value,
.playing-card.diamonds i,
.playing-card.diamonds .card-suit,
.playing-card.diamonds .card-suit-large {
    color: #e74c3c;
}

.playing-card.clubs .card-value,
.playing-card.clubs i,
.playing-card.clubs .card-suit,
.playing-card.clubs .card-suit-large {
    color: #2c3e50;
}

.playing-card.spades .card-value,
.playing-card.spades i,
.playing-card.spades .card-suit,
.playing-card.spades .card-suit-large {
    color: #2c3e50;
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg);
    z-index: 1;
    animation-delay: 0s;
}

.card-2 {
    top: 20px;
    left: 40px;
    transform: rotate(5deg);
    z-index: 2;
    animation-delay: 0.5s;
}

.card-3 {
    top: 40px;
    left: 80px;
    transform: rotate(15deg);
    z-index: 3;
    animation-delay: 1s;
}

.card-4 {
    top: 60px;
    left: 120px;
    transform: rotate(-5deg);
    z-index: 4;
    animation-delay: 1.5s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-dark);
    scroll-margin-top: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

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

.feature-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.visual-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 100px;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.visual-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.visual-header h3 {
    color: var(--text-primary);
}

.visual-list {
    list-style: none;
}

.visual-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.visual-list li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.visual-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.visual-list span {
    color: var(--text-secondary);
}

.visual-list strong {
    color: var(--text-primary);
}

/* How to Play Section */
.how-to-play {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.rules-detailed {
    margin-top: 3rem;
}

.rules-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.rules-box h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.rules-box h3 i {
    color: var(--primary-color);
}

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

.rule-item {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.rule-item h4 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

/* Betting Section */
.betting {
    background: var(--bg-dark);
}

.bet-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bet-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.bet-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.bet-header {
    background: var(--gradient-gold);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bet-header i {
    font-size: 2rem;
    color: var(--text-dark);
}

.bet-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
}

.bet-body {
    padding: 2rem;
}

.bet-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bet-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bet-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.bet-name strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.payout-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bet-option p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.betting-tips-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.betting-tips-box h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.betting-tips-box h3 i {
    color: var(--primary-color);
}

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

.tip-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.tip-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.tip-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.tip-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tip-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Strategies Section */
.strategies {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
}

.strategy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.strategy-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.strategy-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.strategy-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.strategy-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.strategy-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.strategy-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.strategy-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.strategy-note {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.strategy-note i {
    color: var(--primary-color);
    margin-top: 2px;
}

.strategy-note span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pro-tips {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pro-tips h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.pro-tips h3 i {
    color: var(--primary-color);
}

.pro-tips-list {
    display: grid;
    gap: 1.5rem;
}

.pro-tip {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.pro-tip:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.tip-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark);
    flex-shrink: 0;
}

.pro-tip p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.pro-tip strong {
    color: var(--text-primary);
}

/* Online Gaming Section */
.online-gaming {
    background: var(--bg-dark);
}

.online-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.online-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.platforms-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.platform-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platform-icon.live {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.platform-icon.digital {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.platform-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.platform-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.platform-features {
    list-style: none;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-features li:last-child {
    border-bottom: none;
}

.platform-features i {
    color: var(--primary-color);
}

.real-cash-section {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cash-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cash-header h3 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.cash-header h3 i {
    color: var(--primary-color);
}

.cash-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.checklist-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.checklist-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.checklist-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.checklist-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.checklist-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.getting-started {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.getting-started h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.step-h {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.step-h:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.step-h-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0 auto 1rem;
}

.step-h h4 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.step-h p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.responsible-gaming {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 15px;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.responsible-icon {
    flex-shrink: 0;
}

.responsible-icon i {
    font-size: 3rem;
    color: white;
}

.responsible-content h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.responsible-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: var(--gradient-gold);
    padding: 5rem 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(45, 45, 45, 0.8);
}

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

.cta-buttons .btn-primary {
    background: var(--secondary-color);
    color: var(--text-primary);
}

.cta-buttons .btn-outline {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.cta-buttons .btn-outline:hover {
    background: var(--text-dark);
    color: var(--primary-color);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

.cta-feature i {
    font-size: 1.5rem;
}

.cta-feature span {
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-disclaimer {
    font-size: 0.9rem;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 10px;
    color: #e94560;
    font-weight: 600;
}

.age-restriction i {
    font-size: 1.5rem;
}

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

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: rotate(var(--rotate)) translateY(0) scale(1);
    }
    50% {
        transform: rotate(var(--rotate)) translateY(-20px) scale(1.05);
    }
}

.card-1 {
    --rotate: -10deg;
}

.card-2 {
    --rotate: 5deg;
}

.card-3 {
    --rotate: 15deg;
}

.card-4 {
    --rotate: -5deg;
}

/* Card hover effect enhancement */
.playing-card:hover {
    z-index: 100 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .card-stack {
        transform: scale(0.8);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .visual-card {
        position: static;
        top: auto;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .bet-types {
        grid-template-columns: 1fr;
    }

    .platforms-comparison {
        grid-template-columns: 1fr;
    }

    .steps-horizontal {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .responsible-gaming {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .language-switcher {
        top: 70px;
        right: 15px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .gameplay-steps {
        grid-template-columns: 1fr;
    }

    .strategies-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-features {
        gap: 1.5rem;
    }
}
