:where([class^="ri-"])::before { 
    content: "\f3c2"; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0F1A2E;
    color: white;
}

.hero-bg {
    background-image: linear-gradient(rgba(15, 26, 46, 0.4), rgba(15, 26, 46, 0.4)), url('../image/bg-coming-soon.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.toast {
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 60px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #1E3A5C;
    border-radius: 2px;
    position: absolute;
}

input[type="email"] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

.subscribe-btn {
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
} 