/* ========================================
   GRAND LUCK SERVICE - Main Stylesheet
   ======================================== */

:root {
    --gold-primary: #c9a227;
    --gold-light: #e6c65c;
    --gold-dark: #9a7b1a;
    --black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #4a4a4a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --success: #4ade80;
    --danger: #f87171;
    --warning: #fbbf24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: linear-gradient(180deg, rgba(26,26,26,0.98) 0%, rgba(13,13,13,0.98) 100%);
    border-bottom: 2px solid var(--gold-primary);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 9px;
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover {
    color: var(--gold-primary);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--black);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.floating-balls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-ball {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    opacity: 0.15;
    animation: floatBall 20s infinite ease-in-out;
}

@keyframes floatBall {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-100px) rotate(90deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
    75% { transform: translateY(-150px) rotate(270deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge span {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title .gold {
    background: linear-gradient(135deg, #ffd700 0%, var(--gold-primary) 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Jackpot Display */
.jackpot-display {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 25px;
    padding: 30px 50px;
    margin-bottom: 40px;
    display: inline-block;
    animation: fadeIn 0.8s ease 0.5s forwards, pulse 3s infinite;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 50px rgba(201, 162, 39, 0.5); }
}

.jackpot-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.jackpot-amount {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, var(--gold-primary) 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Lotto Picker */
.hero-lotto-picker {
    background: linear-gradient(145deg, rgba(45,45,45,0.9) 0%, rgba(26,26,26,0.95) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.picker-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.picker-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

.lotto-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lotto-ball-select {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lotto-ball-select:hover {
    border-color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.15);
    transform: scale(1.1);
}

.lotto-ball-select.selected {
    background: linear-gradient(145deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-color: var(--gold-primary);
    color: var(--black);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

.selected-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    min-height: 60px;
    flex-wrap: wrap;
}

.selected-ball {
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.selected-ball.empty {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
    box-shadow: none;
}

.picker-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.picker-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.picker-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.picker-info-item .icon {
    color: var(--gold-primary);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.section-title .gold {
    color: var(--gold-primary);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ZIEHUNG CARDS
   ======================================== */
.ziehung-section {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.ziehung-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ziehung-card {
    background: linear-gradient(145deg, rgba(45,45,45,0.9) 0%, rgba(26,26,26,0.95) 100%);
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ziehung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
}

.ziehung-day {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ziehung-date {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
}

.ziehung-balls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ziehung-ball {
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #ffffff 0%, #e0e0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
}

.ziehung-ball::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    width: 15px;
    height: 10px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.superzahl-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.superzahl-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.superzahl-ball {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.spiel77-display {
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    display: inline-block;
}

.spiel77-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 5px;
}

.spiel77-number {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold-primary);
    letter-spacing: 4px;
}

/* ========================================
   RENTENMILLION
   ======================================== */
.rentenmillion-section {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, transparent 50%, rgba(201, 162, 39, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.renten-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.renten-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 25px;
}

.renten-amount-box {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 2px solid var(--gold-primary);
    padding: 20px 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.renten-amount-box .currency {
    font-size: 28px;
    color: var(--gold-primary);
}

.renten-amount-box .amount {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--gold-primary);
}

.renten-amount-box .period {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.renten-info p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.renten-features {
    list-style: none;
    margin-bottom: 30px;
}

.renten-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

.renten-features li .check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.renten-card-visual {
    background: linear-gradient(145deg, rgba(45,45,45,0.95) 0%, rgba(26,26,26,0.98) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(201, 162, 39, 0.2);
}

.renten-icon {
    font-size: 80px;
    margin-bottom: 25px;
}

.renten-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.renten-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.renten-balls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.renten-ball {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
    animation: float 3s ease-in-out infinite;
}

.renten-ball:nth-child(2) { animation-delay: 0.2s; }
.renten-ball:nth-child(3) { animation-delay: 0.4s; }
.renten-ball:nth-child(4) { animation-delay: 0.6s; }
.renten-ball:nth-child(5) { animation-delay: 0.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   VORTEILE GRID
   ======================================== */
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vorteil-card {
    background: linear-gradient(145deg, rgba(45,45,45,0.6) 0%, rgba(26,26,26,0.8) 100%);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.vorteil-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 25px 60px rgba(201, 162, 39, 0.15);
}

.vorteil-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.vorteil-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.vorteil-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ========================================
   PAKETE
   ======================================== */
.pakete-section {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.03) 0%, rgba(201, 162, 39, 0.08) 50%, rgba(201, 162, 39, 0.03) 100%);
}

.pakete-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.paket-card {
    background: linear-gradient(145deg, rgba(45,45,45,0.95) 0%, rgba(26,26,26,0.98) 100%);
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.paket-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(201, 162, 39, 0.25);
}

.paket-card.featured::before {
    content: '⭐ EMPFOHLEN';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.paket-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.paket-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.paket-preis {
    margin-bottom: 30px;
}

.paket-preis .currency {
    font-size: 24px;
    color: var(--gold-primary);
    vertical-align: top;
}

.paket-preis .amount {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--gold-primary);
}

.paket-preis .period {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

.paket-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.paket-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.paket-features li:last-child {
    border-bottom: none;
}

.paket-features .check {
    color: #4ade80;
    font-size: 16px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(45,45,45,0.95) 0%, rgba(26,26,26,0.98) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(201, 162, 39, 0.2);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.cta-hotline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    flex-wrap: wrap;
}

.cta-hotline span {
    color: rgba(255,255,255,0.7);
}

.cta-hotline .number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-primary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    border-top: 2px solid var(--gold-primary);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact strong {
    color: var(--gold-primary);
}

.hotline-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-primary) !important;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

/* ========================================
   FORMS & AUTH PAGES
   ======================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: linear-gradient(145deg, rgba(45,45,45,0.95) 0%, rgba(26,26,26,0.98) 100%);
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
    padding: 50px 45px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.auth-logo {
    text-align: center;
    margin-bottom: 35px;
}

.auth-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.auth-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255,255,255,0.08);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a227' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201, 162, 39, 0.2);
}

.auth-divider span {
    padding: 0 20px;
}

.auth-link {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.auth-link a {
    color: var(--gold-primary);
    font-weight: 600;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
    padding: 120px 0 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

.legal-card {
    background: linear-gradient(145deg, rgba(45,45,45,0.95) 0%, rgba(26,26,26,0.98) 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 25px;
    padding: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.legal-section p,
.legal-section li {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.legal-section ul {
    margin-left: 25px;
}

.contact-box {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 15px;
    padding: 25px 30px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .lotto-grid {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .ziehung-grid {
        grid-template-columns: 1fr;
    }
    
    .renten-content {
        grid-template-columns: 1fr;
    }
    
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pakete-grid {
        grid-template-columns: 1fr;
    }
    
    .paket-card.featured {
        transform: none;
    }
    
    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
    
    .lotto-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .jackpot-amount {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 25px;
    }
    
    .auth-card {
        padding: 30px 25px;
    }
}

