/* ============================================
   TOWER RUSH DEUTSCHLAND - MODERN DESIGN
   ============================================ */

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

:root {
    --primary-blue: #1e3a8a;
    --primary-dark: #0f172a;
    --accent-orange: #f97316;
    --accent-red: #dc2626;
    --accent-gold: #fbbf24;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --bg-light: #f1f5f9;
    --bg-card: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    padding-bottom: 120px;
    font-size: 1.05rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HERO SECTION - MODERN LAYOUT
   ============================================ */

.hero-modern {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 60%, #dc2626 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.03)" width="30" height="30"/></svg>');
    opacity: 0.4;
}

.hero-modern .container {
    position: relative;
    z-index: 1;
}

.logo-header {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.hero-text-side h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-text-side .hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-rating .stars {
    color: var(--accent-gold);
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.hero-rating .rating-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
    background: linear-gradient(135deg, #ea580c 0%, #b91c1c 100%);
}

/* Game iframe wrapper */
.game-frame-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: var(--primary-dark);
}

.game-frame-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* ============================================
   CONTENT SECTIONS
   ============================================ */

section {
    padding: 6rem 0;
}

section.bg-white {
    background: white;
}

section.bg-light {
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header .subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   STEPS / FEATURES GRID
   ============================================ */

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

.step-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-red));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.step-card:hover::before {
    transform: scaleY(1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.step-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ============================================
   TABLE STYLING
   ============================================ */

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 3rem 0;
}

.data-table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
}

.data-table thead th {
    color: white;
    padding: 1.5rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
}

.data-table tbody tr {
    transition: background 0.2s ease;
}

.data-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.data-table tbody tr:hover {
    background: #e0f2fe;
}

.data-table tbody td {
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-dark);
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent-orange);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-location {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ============================================
   INFO BOXES
   ============================================ */

.info-box {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--primary-blue);
    margin: 3rem 0;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.info-box h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-box p {
    color: var(--text-dark);
    line-height: 1.8;
}

.warning-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 6px solid var(--accent-red);
    margin: 3rem 0;
    text-align: center;
}

.warning-box p {
    color: #991b1b;
    font-weight: 600;
    font-size: 1.05rem;
}

/* ============================================
   BOTTOM BAR (FIXED)
   ============================================ */

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0f172a 0%, #000000 100%);
    padding: 1.8rem 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
    z-index: 999;
    border-top: 3px solid var(--accent-orange);
}

.bottom-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.bottom-bar-text h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.bottom-bar-text p {
    color: #cbd5e1;
    font-size: 1rem;
}

.bottom-bar-btn {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bottom-bar-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text-side h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-text-side .hero-subtitle {
        text-align: center;
        font-size: 1.15rem;
    }

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

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

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

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

    .bottom-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

    body {
        padding-bottom: 200px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-modern {
        padding: 3rem 0;
    }

    .hero-text-side h1 {
        font-size: 2rem;
    }

    .logo-header {
        font-size: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .cta-primary, .bottom-bar-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1.05rem;
    }

    .data-table {
        font-size: 0.9rem;
    }

    .data-table thead th,
    .data-table tbody td {
        padding: 1rem 0.8rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
