/* ========================================
   DIROYA Coming Soon Page Styles
   ======================================== */

:root {
    --color-bg: #121312;
    --color-bg-card: #252525;
    --color-white: #ffffff;
    --color-green: #0f7339;
    --color-yellow: #c4d20c;
    --color-gray: #979797;
    --font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-green: 0px 10px 40px rgba(15, 115, 57, 0.5);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

/* Background effects */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(15, 115, 57, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 210, 12, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.glow-1 {
    position: absolute;
    width: 600px;
    height: 400px;
    background: var(--color-green);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    top: -150px;
    left: -200px;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.glow-2 {
    position: absolute;
    width: 500px;
    height: 350px;
    background: var(--color-yellow);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    bottom: -100px;
    right: -150px;
    z-index: 0;
    animation: float 10s ease-in-out infinite reverse;
}

.glow-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--color-green);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    bottom: 20%;
    left: 10%;
    z-index: 0;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Content */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.logo {
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.logo img {
    width: 140px;
    height: auto;
    margin: 0 auto;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg-card);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-yellow);
    margin-bottom: 32px;
    border: 1px solid rgba(196, 210, 12, 0.2);
    animation: fadeIn 1s ease-out 0.2s both;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-yellow);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1 {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.4s both;
}

h1 .highlight {
    color: var(--color-yellow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 48px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Progress indicator */
.progress-container {
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.progress-label {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: var(--color-bg-card);
    border-radius: 100px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--color-green), var(--color-yellow));
    border-radius: 100px;
    animation: progressGrow 2s ease-out 1s both;
}

@keyframes progressGrow {
    from { width: 0%; }
    to { width: 75%; }
}

/* Notify form */
.notify-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--color-green);
    color: var(--color-white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0px 15px 50px rgba(15, 115, 57, 0.6);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background-color: var(--color-bg-card);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--color-gray);
    z-index: 1;
    animation: fadeIn 1s ease-out 1.2s both;
}

/* Decorative elements */
.decor-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--color-green), transparent);
    opacity: 0.3;
}

.decor-line-1 {
    left: 10%;
    top: 20%;
}

.decor-line-2 {
    right: 15%;
    bottom: 25%;
}

.decor-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-yellow);
    border-radius: 50%;
    opacity: 0.5;
}

.decor-dot-1 { top: 15%; left: 20%; }
.decor-dot-2 { top: 30%; right: 25%; }
.decor-dot-3 { bottom: 20%; left: 30%; }
.decor-dot-4 { bottom: 35%; right: 20%; }

/* Responsive */
@media (max-width: 768px) {
    .logo {
        margin-bottom: 40px;
    }

    .logo img {
        width: 100px;
    }

    .description {
        font-size: 16px;
    }

    .notify-form {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .glow-1, .glow-2, .glow-3 {
        filter: blur(100px);
        opacity: 0.3;
    }
}
