
:root {
    --main-red: #ff3131;
    --text-white: #ffffff;
    --text-black: #1a1a1a;
    --line-width: 12px;
    --line-gap: 8px;    
    --main-font: 'Barlow Semi Condensed', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--main-red);
    font-family: var(--main-font);
    height: 100vh;
    width: 100vw;
    overflow: hidden; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deco-lines {
    position: absolute;
    display: flex;
    gap: var(--line-gap);
    z-index: 1; 
}

.line {
    background-color: white;
    width: var(--line-width);
    border-radius: 2px;
}


.top-right {
    top: 0;
    right: 5%; 
    flex-direction: row;
}

.top-right .long {
    height: 40vh; 
}
.top-right .short {
    height: 25vh; 
    margin-top: 0; 
}

.bottom-left {
    bottom: 0;
    left: 5%;
    flex-direction: row;
    align-items: flex-end; 
}

.bottom-left .long {
    height: 40vh;
}
.bottom-left .short {
    height: 25vh;
}

.lamp-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px; 
    height: 140px;
    z-index: 20; 
}

.spotlight {
    position: absolute;
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px; 
    height: 60vh; 
    background: radial-gradient(ellipse at top, 
        rgba(255, 247, 209, 0.6) 0%, 
        rgba(255, 247, 209, 0.3) 30%, 
        rgba(255, 46, 46, 0) 70% 
    );
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    filter: blur(30px); 
    pointer-events: none;
    z-index: 5; 
}

.container {
    position: relative;
    z-index: 30;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
}


.top-info {
    position: absolute;
    top: 60px;
    color: white;
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    z-index: 40;
}


.coming-soon {
    font-family: var(--main-font); 
    font-size: clamp(3.5rem, 13vw, 6rem); 
    transform: rotate(-4deg);
    font-weight: 700; 
    line-height: 0.85; 
    color: white;
    text-shadow: 0 10px 20px rgba(0,0,0,0.25);
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
}

.robot-wrapper {
    width: clamp(200px, 30vw, 300px); 
    margin-bottom: 20px;
}

.brand-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px; 
    position: relative;
    z-index: 10;
}

.brand-name {
    font-family: var(--main-font);
    font-size: clamp(4rem, 14vw, 6.5rem);    
    color: var(--text-black); 
    line-height: 0.8; 
    margin: 0;
    font-weight: 800; 
    letter-spacing: -2px; 
    text-transform: uppercase;
}

.sub-brand {
    color: var(--text-white);
    font-family: var(--main-font);
    font-size: clamp(0.9rem, 3.5vw, 1.3rem);
    font-weight: 600;
    margin-top: 0px; 
    letter-spacing: 1px; 
    text-align: right; 
    width: 100%; 
    padding-right: 5px; 
}

.tagline {
    font-family: var(--main-font);
    color: var(--text-black);
    font-size: clamp(0.75rem, 2.8vw, 1.6rem); 
    font-weight: 500;
    margin-top: 40px; 
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
    z-index: 10;
}

/* Yüzen animasyon efekti(isteğe bağlı ama eklemedim) */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } /* 10px yukarı çıkar */
    100% { transform: translateY(0px); }
}