/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
    line-height: 1.5;
}

@keyframes luxuryGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    z-index: 1;
}

/* Dezente Background-Elemente */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.04) 0%, 
        rgba(52, 73, 94, 0.06) 50%, 
        rgba(212, 175, 55, 0.04) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.08);
    box-shadow: 0 2px 10px rgba(52, 73, 94, 0.05);
    transform: rotate(0deg);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 10%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 30%;
    animation-delay: -20s;
    animation-duration: 32s;
}

/* Statische elegante Formen ohne Animation */
.shape-1, .shape-2, .shape-3, .shape-4, .shape-5 {
    opacity: 0.3;
}

/* Main Content */
.content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    z-index: 1;
}

/* Luxury Logo Section */
.logo-section {
    margin-bottom: 2rem;
}

.luxury-logo {
    position: relative;
    padding: 4rem 3rem;
    background: linear-gradient(145deg, 
        rgba(26, 37, 47, 0.8) 0%, 
        rgba(44, 62, 80, 0.6) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(212, 175, 55, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.logo-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    filter: drop-shadow(0 2px 8px rgba(52, 73, 94, 0.3));
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #d4af37;
    text-shadow: 1px 1px 3px rgba(52, 73, 94, 0.5);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.85;
}

/* Text Section */
.text-section {
    margin-bottom: 2rem;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(52, 73, 94, 0.4);
    color: #ffffff;
}

.title-line {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.highlight {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #bdc3c7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Progress Section */
.progress-section {
    margin-bottom: 3rem;
    opacity: 1;
    background: linear-gradient(145deg, 
        rgba(26, 37, 47, 0.8) 0%, 
        rgba(44, 62, 80, 0.6) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.progress-percentage {
    color: #d4af37;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(52, 73, 94, 0.4);
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        rgba(52, 73, 94, 0.6) 0%, 
        rgba(69, 90, 100, 0.4) 100%);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: inset 0 1px 3px rgba(52, 73, 94, 0.4);
}

.progress-fill {
    height: 100%;
    width: 55%;
    background: linear-gradient(90deg, 
        #d4af37 0%, 
        #b8941f 100%);
    border-radius: 0;
    position: relative;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 3rem;
    opacity: 1;
}

.countdown-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #d4af37;
    text-shadow: 1px 1px 3px rgba(52, 73, 94, 0.4);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(145deg, 
        rgba(52, 73, 94, 0.7) 0%, 
        rgba(27, 28, 39, 0.6) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    min-width: 140px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(52, 73, 94, 0.2),
                inset 0 1px 0 rgba(15, 15, 15, 0.2);
}

.time-unit:hover {
    background: linear-gradient(
        95deg, 
        rgba(52, 73, 94, 0.7) 0%, 
        rgba(27, 28, 39, 0.6) 100%
    );
}

.time-unit .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #d4af37;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(52, 73, 94, 0.4);
}

.time-unit .label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #7f8c8d;
}

/* Notify Section */
.notify-section {
    margin-bottom: 4rem;
    opacity: 1;
}

.notify-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #d4af37;
    text-shadow: 1px 1px 3px rgba(52, 73, 94, 0.4);
}

.notify-form {
    max-width: 830px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    background: linear-gradient(145deg, 
        rgba(26, 37, 47, 0.9) 0%, 
        rgba(44, 62, 80, 0.7) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 0;
    overflow: hidden;
    transition: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.input-group input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.input-group input::placeholder {
    color: rgba(149, 165, 166, 0.7);
}

.input-group button {
    padding: 1.2rem 2rem;
    border: none;
    background: linear-gradient(45deg, #d4af37, #f39c12);
    color: #2c3e50;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.input-group button:hover {
    background: linear-gradient(45deg, #f39c12, #d4af37);
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.input-group button svg {
    transition: transform 0.3s ease;
}

.input-group button:hover svg {
    transform: translateX(3px);
}

/* Social Section */
.social-section {
    opacity: 1;
}

.social-section p {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    color: #95a5a6;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, 
        rgba(26, 37, 47, 0.9) 0%, 
        rgba(44, 62, 80, 0.7) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 0;
    color: #d4af37;
    text-decoration: none;
    transition: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .luxury-logo {
        padding: 1.5rem;
        max-width: 350px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }
    
    .time-unit .number {
        font-size: 2.2rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 0;
    }
    
    .input-group button {
        border-radius: 0;
        justify-content: center;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 0.8rem;
    }
    
    .time-unit {
        min-width: 85px;
        padding: 1.2rem 0.8rem;
    }
    
    .time-unit .number {
        font-size: 2rem;
    }
    
    .progress-section {
        padding: 1.5rem;
    }
}

/* Success message for form submission */
.success-message {
    display: none;
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    color: #ffd700;
    font-weight: 600;
    animation: slideInUp 0.5s ease-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.success-message.show {
    display: block;
}

/* Additional luxury effects */

/* Success message for form submission */
.success-message {
    display: none;
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(26, 37, 47, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 0;
    padding: 2rem;
    margin-top: 1rem;
    color: #d4af37;
    font-weight: 600;
    backdrop-filter: blur(30px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.success-message.show {
    display: block;
}