/* ===== CSS Variables - Okan Akü Brand Colors ===== */
:root {
    --primary-dark: #0a1628;
    --primary-blue: #0d2847;
    --accent-blue: #1a4a7a;
    --accent-orange: #e67e22;
    --accent-gold: #f39c12;
    --light-blue: #3498db;
    --electric-blue: #00d4ff;
    --text-white: #ffffff;
    --text-light: #b8c5d6;
    --text-muted: #7f8c9a;
    --gradient-orange: linear-gradient(90deg, #e67e22, #f39c12, #e67e22);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background: var(--primary-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ===== Main Container ===== */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--accent-blue) 100%);
    padding: 2rem;
}

/* ===== Animated Background ===== */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.lightning-effect {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--electric-blue), transparent);
    opacity: 0;
    animation: lightning 4s infinite;
}

.lightning-effect:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.lightning-effect:nth-child(2) {
    left: 50%;
    animation-delay: 1.5s;
}

.lightning-effect:nth-child(3) {
    left: 80%;
    animation-delay: 3s;
}

@keyframes lightning {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: translateY(-100px);
    }

    92%,
    94% {
        opacity: 1;
        transform: translateY(50vh);
    }

    96% {
        opacity: 0.5;
        transform: translateY(100vh);
    }
}

/* Floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--electric-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out;
}

.particle:nth-child(4) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(5) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
}

.particle:nth-child(6) {
    left: 70%;
    top: 30%;
    animation-delay: 4s;
}

.particle:nth-child(7) {
    left: 85%;
    top: 70%;
    animation-delay: 1s;
}

.particle:nth-child(8) {
    left: 50%;
    top: 80%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.6;
    }
}

/* ===== Content Area ===== */
.content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

/* ===== Logo Section ===== */
.logo-section {
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(180deg, var(--text-white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.logo-text span {
    font-weight: 400;
    font-size: 2.5rem;
}

/* ===== Orange Line Decoration ===== */
.orange-line {
    width: 100%;
    max-width: 500px;
    height: 4px;
    background: var(--gradient-orange);
    margin: 1.5rem auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.orange-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ===== Battery Icon ===== */
.battery-icon {
    width: 120px;
    height: 80px;
    margin: 2rem auto;
    position: relative;
    animation: pulse 2s infinite ease-in-out;
}

.battery-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
    }
}

/* ===== Main Message ===== */
.main-message {
    margin: 2rem 0;
}

.main-message h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.main-message h1 .highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

.main-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Progress Indicator ===== */
.progress-section {
    margin: 3rem 0;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progress-bar-container {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 75%;
    background: var(--gradient-orange);
    border-radius: 4px;
    position: relative;
    animation: progress-pulse 2s infinite ease-in-out;
}

@keyframes progress-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ===== Contact Info ===== */
.contact-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-light);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: var(--text-white);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.contact-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Website URL ===== */
.website-url {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.website-url span {
    color: var(--electric-blue);
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    margin-top: 3rem;
    padding-bottom: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5rem;
    }

    .logo-text span {
        font-size: 1.8rem;
    }

    .main-message h1 {
        font-size: 1.5rem;
    }

    .main-message p {
        font-size: 1rem;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2rem;
    }

    .logo-text span {
        font-size: 1.4rem;
    }

    .battery-icon {
        width: 80px;
        height: 55px;
    }
}