/* ===================================
   OneClub Coming Soon Pages Styles
   (confirm.html, unsubscribe.html)
   =================================== */

/* CSS Variables - Konsistent mit index.css */
:root {
    --color-gold: #FFC857;
    --color-gold-light: #ffc757b2;
    --color-black: #000000;
    --color-dark: #0e0e0e;
    --color-dark-gray: #111111;
    --color-light-gray: #888888;
    --color-white: #FFFFFF;
    --color-error: #ff4444;
    --color-success: #4CAF50;
    
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    text-align: center;
}

/* Hintergrund-Effekt */
.glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Section */
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Logo */
.logo {
    height: auto;
    max-height: 160px;
    width: 80%;
    max-width: 400px;
    margin-bottom: 30px;
    animation: comingSoonFadeIn 1.5s ease-out;
    object-fit: contain;
    display: block;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: comingSoonFadeIn 1.7s ease-out;
    transition: var(--transition);
}

.status-badge.error {
    border-color: var(--color-error);
    color: var(--color-error);
}

.status-badge.success {
    border-color: var(--color-success);
    color: var(--color-success);
}

/* Typografie */
h1 {
    font-size: clamp(26px, 7vw, 60px);
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: comingSoonFadeIn 1.9s ease-out;
}

p {
    font-size: clamp(15px, 4vw, 18px);
    color: var(--color-light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: comingSoonFadeIn 2.1s ease-out;
}

/* Button Group */
.button-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Action Button */
.action-btn {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    margin-top: 0;
    border: none;
    cursor: pointer;
    animation: comingSoonFadeIn 2.5s ease-out;
    min-width: 180px;
    text-align: center;
}

.action-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

.action-btn:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Button Variants */
.action-btn.danger {
    background: #8B4513;
    color: var(--color-white);
}

.action-btn.danger:hover {
    background: #A0522D;
}

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

.action-btn.outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Hint Text */
.hint {
    font-size: 13px;
    color: #666;
    margin-top: 30px;
    margin-bottom: 0;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 30px 20px;
    color: #444;
    font-size: 13px;
    z-index: 2;
}

footer p {
    margin: 0;
    color: #444;
    animation: none;
}

/* Animationen */
@keyframes comingSoonFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .logo {
        max-height: 100px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    p {
        font-size: 16px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
}

/* Performance: Reduzierte Animationen */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
