/* Main page specific styles */
header {
    text-align: center;
    padding: 2rem 0;
}

.brand {
    margin-bottom: 2rem;
}

.brand-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 10px rgba(0, 255, 149, 0.3),
        0 0 20px rgba(0, 255, 149, 0.2);
    background: linear-gradient(to right, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.time-flow {
    margin: 2rem 0;
}

.time-flow h2 {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-container {
    max-width: 600px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: #07182E;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: #FF5F1F;
    border-radius: 8px;
    transition: width 1s ease-out;
    position: relative;
    box-shadow: 0 0 5px #FF5F1F,
                0 0 10px #FF5F1F,
                0 0 15px #FF5F1F,
                0 0 20px #FF8C00;
    animation: pulseNeonOrange 2s infinite ease-in-out;
}

@keyframes pulseNeonOrange {
    0%, 100% {
        box-shadow: 0 0 5px #FF5F1F,
                   0 0 10px #FF5F1F,
                   0 0 15px #FF5F1F,
                   0 0 20px #FF8C00;
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 8px #FF5F1F,
                   0 0 16px #FF5F1F,
                   0 0 24px #FF5F1F,
                   0 0 32px #FF8C00;
        opacity: 0.8;
    }
}

.progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #FF5F1F;
    text-shadow: 0 0 5px #FF8C00;
    font-weight: bold;
    font-size: 1rem;
    mix-blend-mode: difference;
    letter-spacing: 1px;
}

.todays-important-section {
    margin: 2rem 0;
    text-align: center;
}

.todays-important-section h2 {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.card {
    width: clamp(180px, 80vw, 280px);
    height: clamp(240px, 60vw, 350px);
    background: #07182E;
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto;
    cursor: pointer;
}

.card h2 {
    z-index: 1;
    color: white;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    padding: 15px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
}

.card::before {
    content: '';
    position: absolute;
    width: 100px;
    background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
    height: 130%;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card::after {
    content: '';
    position: absolute;
    background: #07182E;
    inset: 5px;
    border-radius: 15px;
}

.navigation {
    text-align: center;
    margin: 2rem 0;
}


.nav-button {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
    border: none;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: 100%;
    max-width: 120px;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 149, 0.3);
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .task-container {
        margin: 1rem 0.5rem;
    }
    .nav-button {
        max-width: 100%;
    }
}
