* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
    width: 100vw;
    min-height: 100vh;
}

.coming-soon-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.brand-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.triangle-left,
.triangle-right {
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.9;
    z-index: 0;
}

.triangle-left {
    left: 0;
    background-image: url("Right Triangle.png");
    transform: rotate(0deg);
}

.triangle-right {
    right: 0;
    background-image: url("Right Triangle.png");
    transform: scaleX(-1);
}

.content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease forwards;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    animation: fadeUp 0.9s ease forwards;
}

.solid {
    color: #ff0015;
}

.core {
    color: #fff;
}

.subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: 5px;
    margin-bottom: 35px;
    color: #ccc;
    animation: fadeUp 1s ease forwards;
}

.trusted {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 40px;
    animation: fadeUp 1.2s ease forwards;
}

.trusted .line {
    width: 80px;
    height: 2px;
    background: #fff;
    border: none;
}

.trusted p {
    font-size: 20px;
    font-weight: 600;
    color: #ff0015;
}

.trusted strong {
    color: #ff0015;
}

.message {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    animation: fadeUp 1.1s ease forwards;
}

.subtext {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 35px;
    animation: fadeUp 1.2s ease forwards;
}

#countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 auto 30px;
    max-width: 450px;
    width: 100%;
    animation: fadeUp 1.3s ease forwards;
}

#countdown div {
    flex: 1 1 90px;
    background: rgba(255, 255, 255, 0.12);
    padding: 16px 18px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#countdown div:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

body.light-mode #countdown div:hover {
    box-shadow: 0 0 15px rgba(184, 25, 26, 0.5);
}

#countdown span {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ff0015;
    text-shadow: 0 0 8px rgba(230, 57, 70, 0.9);
}

#countdown small {
    font-size: 13px;
    color: #fff;
}

.fade-in {
    opacity: 0;
    animation: pageFade 0.6s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

#toggle-mode {
    position: fixed;
    top: 25px;
    right: 25px;
    background: transparent;
    border: 2px solid #e63946;
    color: #e63946;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

#toggle-mode:hover {
    background: #e63946;
    color: #fff;
}

body.light-mode {
    background-color: #f7f7f7;
    color: #1a1a1a;
}

body.light-mode .core,
body.light-mode .contact i,
body.light-mode #countdown span {
    color: #b8191a;
}

body.light-mode h1 { color: #1a1a1a; }
body.light-mode .solid { color: #111; }
body.light-mode .subtitle { color: #555; }
body.light-mode .message { color: #222; font-weight: 700; }
body.light-mode .subtext { color: #444; }
body.light-mode #countdown div { background: rgba(0,0,0,0.08); box-shadow: 0 0 10px rgba(0,0,0,0.2); }
body.light-mode #countdown span { text-shadow: none; }
body.light-mode .contact a { color: #222; }
body.light-mode .contact a:hover { color: #b8191a; background: rgba(184,25,26,0.1); text-shadow: 0 0 5px rgba(184,25,26,0.6); }
body.light-mode .address a { color: #111; }
body.light-mode .address a:hover { color: #b8191a; }
body.light-mode #toggle-mode { border-color: #b8191a; color: #b8191a; background: rgba(0,0,0,0.05); }
body.light-mode #toggle-mode:hover { background: #b8191a; color: #fff; }
body.light-mode .trusted .line { background: #000; }
body.light-mode #countdown small {font-size: 13px;color: #000;}
body.light-mode .trusted strong {color: #b8191a;}
body.light-mode .trusted p {color: #b8191a;}

@media (max-width: 1024px) {
    h1 { font-size: 46px; }
    .subtitle { font-size: 16px; }
    .message { font-size: 22px; }
    .trusted p { font-size: 18px; }
}

@media (max-width: 768px) {
    h1 { font-size: 38px; }
    .subtitle { font-size: 14px; margin-bottom: 25px; }
    .message { font-size: 20px; }
    .trusted p { font-size: 16px; }
    #countdown div { padding: 12px 16px; min-width: 60px; }
    #countdown span { font-size: 28px; }
    .contact p { font-size: 14px; flex-direction: column; gap: 3px; }
    .address { font-size: 13px; margin-top: 10px; }
}

@media (max-width: 480px) {
    h1 { font-size: 30px; }
    .logo { width: 150px; }
    .message { font-size: 18px; }
    #countdown span { font-size: 24px; }
}

.contact {
    animation: fadeUp 1.4s ease forwards;
    margin-top: 20px;
}

.contact p {
    font-size: 16px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #f1f1f1;
}

.contact i {
    color: #ff0015;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact a:hover {
    color: #ff0015;
    background: rgba(230, 57, 70, 0.2);
    text-shadow: 0 0 6px rgba(230, 57, 70, 0.8);
}

.address {
    font-size: 15px;
    color: #ccc;
    margin-top: 12px;
}

.address a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.address a:hover {
    color: #ff0015;
    text-shadow: 0 0 6px rgba(230, 57, 70, 0.8);
}

body.light-mode .contact i {
    color: #b8191a; 
}

body.light-mode .contact a {
    color: #222;
}

body.light-mode .contact a:hover {
    color: #b8191a;
    background: rgba(184, 25, 26, 0.1);
    text-shadow: 0 0 5px rgba(184, 25, 26, 0.6);
}

body.light-mode .address a {
    color: #111;
}

body.light-mode .address a:hover {
    color: #b8191a;
}

.triangle-left,
.triangle-right {
    position: fixed;
    top: 50%;
    width: 180px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.9;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.triangle-left {
    left: 0;
    background-image: url("Right Triangle.png");
}

.triangle-right {
    right: 0;
    background-image: url("Right Triangle.png");
    transform: translateY(-50%) scaleX(-1);
}

@media (max-width: 768px) {
    .triangle-left,
    .triangle-right {
        width: 100px;
        opacity: 0.5;
    }
}

body.light-mode .solid {
    color: #b8191a;
}

body.light-mode .core {
    color: #111;
}
