/* ===================================
   Blunt Humor - Under Construction Page
   Styles
   =================================== */

/* CSS Variables - Color Scheme */
:root {
    --color-bg-dark: #0d0d0d;
    --color-bg-card: #1a1a1a;
    --color-bg-modal: #141414;
    
    --color-primary: #4ade80;
    --color-primary-dark: #22c55e;
    --color-primary-light: #86efac;
    
    --color-secondary: #a3e635;
    --color-accent: #facc15;
    
    --color-text: #f5f5f5;
    --color-text-muted: #a3a3a3;
    --color-text-dim: #737373;
    
    --color-border: #2d2d2d;
    --color-border-light: #404040;
    
    --shadow-glow: 0 0 40px rgba(74, 222, 128, 0.15);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2e1a 50%, var(--color-bg-dark) 100%);
    color: var(--color-text);
    min-height: 100vh;
    line-height: 1.6;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* ===================================
   Age Verification Modal
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--color-bg-modal);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-glow), 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
}

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

.modal-logo {
    margin-bottom: 24px;
}

.modal-logo .logo-img {
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.3));
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.modal-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.modal-text strong {
    color: var(--color-text);
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .modal-buttons {
        flex-direction: column-reverse;
    }
}

.btn {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-exit {
    background: transparent;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border-light);
}

.btn-exit:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border-color: var(--color-text-dim);
}

.btn-enter {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #0d0d0d;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 222, 128, 0.4);
}

.btn-enter:active {
    transform: translateY(0);
}

.modal-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    line-height: 1.5;
}

/* ===================================
   Main Content
   =================================== */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--color-secondary);
    bottom: -80px;
    left: -80px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.15;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(-30px, -30px) scale(1.05);
    }
}

/* Logo Section */
.logo-section {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.main-logo {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Content Card */
.content-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    position: relative;
    z-index: 1;
}

@media (max-width: 540px) {
    .content-card {
        padding: 30px 20px;
    }
}

/* Construction Icon */
.construction-icon {
    margin-bottom: 24px;
    animation: iconPulse 2s ease-in-out infinite;
}

.construction-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--color-accent);
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.5));
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Title & Text */
.title {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 8px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* Progress Section */
.progress-section {
    margin-bottom: 24px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    width: 66%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 4px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.progress-text {
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

/* Description */
.description {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Info Badges */
.info-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

.badge svg {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
    margin-bottom: 24px;
}

/* Notify Section */
.notify-section {
    text-align: center;
}

.notify-text {
    color: var(--color-text-dim);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.btn-notify {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #0d0d0d;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: not-allowed;
    opacity: 0.7;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.9375rem;
}

.btn-notify svg {
    width: 18px;
    height: 18px;
    fill: #0d0d0d;
}

.coming-soon-text {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    text-align: center;
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

.footer p {
    margin-bottom: 4px;
}

.age-notice {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    opacity: 0.7;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 640px) {
    .modal-content {
        padding: 30px 24px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .main-logo {
        max-width: 150px;
        max-height: 150px;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .info-badges {
        flex-direction: column;
        gap: 12px;
    }
}
