/*
Theme Name: FastLuckKocka
Theme URI: https://fastluckocka.com
Author: FastLuckKocka
Author URI: https://fastluckocka.com
Description: A premium online gaming theme for FastLuckKocka - Free online games for players across Canada.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fastluckkocka
*/

:root {
    --primary-dark: #0a1628;
    --primary-navy: #0f2140;
    --secondary-navy: #162d50;
    --accent-gold: #d4a843;
    --accent-gold-light: #f0c85a;
    --accent-gold-dark: #b8922e;
    --text-light: #e8e8e8;
    --text-muted: #94a3b8;
    --card-bg: #1a3358;
    --card-border: #2a4a7a;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #162d50 50%, #1a3358 100%);
    --gradient-gold: linear-gradient(135deg, #d4a843 0%, #f0c85a 50%, #b8922e 100%);
    --gradient-card: linear-gradient(145deg, #1a3358 0%, #0f2140 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.site-header {
    background: var(--primary-dark);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-logo span {
    color: var(--text-light);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-navigation a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--accent-gold);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    padding: 100px 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--text-light);
    line-height: 1.1;
}

.hero-content h1 .highlight {
    color: var(--accent-gold);
    display: block;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
    color: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    padding: 14px 38px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background: var(--primary-navy);
    padding: 100px 30px;
    text-align: center;
}

.features-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-light);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.feature-card h3 {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Games Section */
.games-section {
    background: var(--primary-dark);
    padding: 100px 30px;
    text-align: center;
}

.games-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-light);
}

.games-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.game-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 168, 67, 0.15);
    border-color: var(--accent-gold);
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-card-content {
    padding: 30px;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Hall of Fame */
.hall-of-fame {
    background: var(--secondary-navy);
    padding: 100px 30px;
    text-align: center;
}

.hall-of-fame h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--accent-gold);
}

.leaderboard-table {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.leaderboard-table thead {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.leaderboard-table th {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-light);
}

.leaderboard-table tr:last-child td {
    border-bottom: none;
}

.leaderboard-table tbody tr:hover {
    background: rgba(212, 168, 67, 0.05);
}

/* Steps Section */
.steps-section {
    background: var(--primary-dark);
    padding: 100px 30px;
}

.steps-inner {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 60px;
}

.steps-inner h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--accent-gold);
    text-align: center;
}

.step-item {
    margin-bottom: 30px;
    padding-left: 40px;
    position: relative;
}

.step-item::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-item h3 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.step-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Page Header */
.page-header {
    background: var(--gradient-hero);
    padding: 80px 30px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
}

.page-header h1 {
    font-size: 52px;
    color: var(--accent-gold);
    position: relative;
}

/* Content Sections */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.content-section p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-section h2 {
    color: var(--accent-gold);
    font-size: 28px;
    margin: 40px 0 20px;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-section ul li {
    color: var(--text-muted);
    padding: 8px 0 8px 24px;
    position: relative;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Forms */
.form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--secondary-navy);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

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

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

.form-submit {
    text-align: right;
}

/* Game Page */
.game-page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}

.game-iframe-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--card-border);
    margin-top: 40px;
}

.game-iframe-wrapper iframe {
    display: block;
    border: none;
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--card-border);
    padding: 50px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    background: var(--secondary-navy);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: var(--accent-gold);
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.footer-badges img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Responsible Gaming Badges */
.responsible-gaming {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    margin-top: 40px;
}

.responsible-gaming span {
    display: inline-block;
    margin: 0 20px;
    padding: 8px 16px;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        max-width: 100%;
    }
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .games-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    .main-navigation ul {
        gap: 20px;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .hero-section {
        padding: 60px 20px;
    }
    .page-header h1 {
        font-size: 36px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .steps-inner {
        padding: 40px 24px;
    }
}
