/* Agenda Specific Styles */
:root {
    --neon-green: #0f0;
    --neon-red: #f43c3c;
    --neon-blue: #00f3ff;
    --dark-bg: #050505;
}

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Share Tech Mono', monospace;
    overflow-x: hidden;
}

/* --- LOCK SCREEN --- */
#lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(circle, rgba(0, 50, 0, 0.2), #000);
}

.auth-container {
    text-align: center;
    border: 1px solid #333;
    padding: 40px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.lock-icon {
    font-size: 3rem;
    color: #555;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.password-input {
    background: black;
    border: 1px solid #444;
    color: var(--neon-green);
    padding: 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    outline: none;
}

.password-input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.access-btn {
    background: transparent;
    border: 1px solid #555;
    color: #555;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    transition: 0.3s;
}

.access-btn:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.status-msg {
    height: 20px;
    margin-top: 10px;
    color: var(--neon-red);
    font-size: 0.9rem;
}

/* HACKED OVERLAY ANIMATION */
.hacked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    z-index: 10001;
}

@keyframes glitch-access {
    0% {
        clip-path: inset(50% 0 50% 0);
        opacity: 1;
    }

    20% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        background: black;
        color: var(--neon-green);
    }

    40% {
        background: var(--neon-green);
        color: black;
    }

    60% {
        background: black;
        color: var(--neon-green);
    }

    100% {
        opacity: 0;
        display: none;
    }
}

/* --- MAIN AGENDA CONTENT --- */
#main-content {
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: none;
    padding-bottom: 100px;
}

.agenda-header {
    text-align: center;
    padding: 100px 20px 60px;
    background: radial-gradient(circle at top, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
}

.glitch-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -4px;
    text-shadow: 2px 2px var(--neon-red), -2px -2px var(--neon-blue);
}

/* TABS */
.days-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.day-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 40px;
    color: #666;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    transition: all 0.4s;
    text-align: center;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

.day-tab.active {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

/* DASHBOARD LAYOUT */
.agenda-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.agenda-module {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.agenda-module::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #333;
    transition: all 0.3s;
}

.agenda-module:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    background: rgba(20, 20, 30, 0.9);
}

.agenda-module:hover::before {
    background: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.agenda-module.priority {
    border-left: 4px solid var(--neon-red);
}

.agenda-module.priority::before {
    display: none;
}

.agenda-module.break {
    background: repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2) 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.module-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-family: 'Share Tech Mono', monospace;
}

.module-id {
    color: #555;
}

.module-tag {
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 2px 8px;
    font-size: 0.7rem;
}

.module-time {
    color: var(--neon-blue);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.module-text {
    font-family: 'Outfit', sans-serif;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-footer {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.module-footer span i {
    margin-right: 5px;
    color: var(--neon-blue);
}

/* REVEAL ON PC */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.active .reveal {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGER DELAYS */
.agenda-module:nth-child(1) {
    transition-delay: 0.1s;
}

.agenda-module:nth-child(2) {
    transition-delay: 0.2s;
}

.agenda-module:nth-child(3) {
    transition-delay: 0.3s;
}

.agenda-module:nth-child(4) {
    transition-delay: 0.4s;
}

.agenda-module:nth-child(5) {
    transition-delay: 0.5s;
}

/* Hidden container logic */
.day-content {
    display: none;
    animation: fadeInUI 0.6s ease-out;
}

.day-content.active {
    display: block;
}

@keyframes fadeInUI {
    from {
        opacity: 0;
        transform: scale(0.98);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* --- RESPONSIVE / COMING SOON --- */
.coming-soon-container {
    text-align: center;
    padding: 60px 20px;
    border: 1px dashed var(--neon-green);
    background: rgba(0, 255, 65, 0.02);
    margin: 20px auto;
    /* Center with margin */
    max-width: 90%;
    /* Max width for safety */
    border-radius: 8px;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-break: break-all;
    /* Ensures long strings break on small screens */
    max-width: 100%;
}

.coming-soon-title::before,
.coming-soon-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    /* Matches agenda-module bg approx to mask */
}

.coming-soon-title::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-anim 5s infinite linear alternate-reverse;
    opacity: 0.8;
}

.coming-soon-title::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
    opacity: 0.8;
}

.coming-soon-text {
    font-family: 'Share Tech Mono', monospace;
    color: #aaa;
    margin-top: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-top: 30px;
    opacity: 0.7;
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .agenda-dashboard {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .day-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        border-radius: 0;
        clip-path: none;
    }

    .days-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .glitch-title {
        font-size: 3rem;
    }

    .agenda-header {
        padding: 60px 20px;
    }

    /* Coming Soon Mobile Optimization */
    .coming-soon-title {
        font-size: 1.4rem;
        /* Slightly larger for impact */
        letter-spacing: 1px;
    }

    .coming-soon-title::before,
    .coming-soon-title::after {
        display: none;
        /* Disable glitch clones on mobile to prevent overlap/clutter */
    }

    .coming-soon-container {
        padding: 40px 10px;
        margin-top: 10px;
        border-style: dashed;
    }

    .coming-soon-text {
        font-size: 0.9rem;
    }
}/ *   N u e v o   d i s e Ã ± o   p a r a   A g e n d a   B l o q u e a d a   ( C e n t r a l i z a d o   y   L i m p i o )   * /  
 . l o c k e d - w r a p p e r   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         w i d t h :   1 0 0 % ;  
         m i n - h e i g h t :   4 0 0 p x ;  
         p a d d i n g :   4 0 p x   2 0 p x ;  
 }  
  
 . l o c k e d - c a r d   {  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 6 ) ;  
         b o r d e r :   1 p x   s o l i d   # 3 3 3 ;  
         p a d d i n g :   3 r e m ;  
         t e x t - a l i g n :   c e n t e r ;  
         p o s i t i o n :   r e l a t i v e ;  
         m a x - w i d t h :   5 0 0 p x ;  
         w i d t h :   1 0 0 % ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
         b o x - s h a d o w :   0   2 0 p x   5 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 . 5 r e m ;  
 }  
  
 . l o c k e d - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o r d e r - c o l o r :   v a r ( - - n e o n - b l u e ) ;  
         b o x - s h a d o w :   0   2 0 p x   6 0 p x   r g b a ( 0 ,   2 4 3 ,   2 5 5 ,   0 . 1 ) ;  
 }  
  
 . l o c k - r i n g   {  
         w i d t h :   8 0 p x ;  
         h e i g h t :   8 0 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b o r d e r :   2 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         p o s i t i o n :   r e l a t i v e ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
 }  
  
 . l o c k - r i n g : : a f t e r   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   - 5 p x ;  
         l e f t :   - 5 p x ;  
         r i g h t :   - 5 p x ;  
         b o t t o m :   - 5 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b o r d e r :   2 p x   s o l i d   t r a n s p a r e n t ;  
         b o r d e r - t o p - c o l o r :   v a r ( - - n e o n - b l u e ) ;  
         b o r d e r - r i g h t - c o l o r :   v a r ( - - n e o n - b l u e ) ;  
         a n i m a t i o n :   s p i n - l o c k   3 s   l i n e a r   i n f i n i t e ;  
 }  
  
 . l o c k - i c o n - c e n t e r   {  
         f o n t - s i z e :   2 r e m ;  
         c o l o r :   w h i t e ;  
 }  
  
 . l o c k e d - t e x t - t i t l e   {  
         f o n t - s i z e :   1 . 8 r e m ;  
         f o n t - w e i g h t :   8 0 0 ;  
         c o l o r :   w h i t e ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   2 p x ;  
         l i n e - h e i g h t :   1 . 2 ;  
 }  
  
 . l o c k e d - t e x t - d e s c   {  
         f o n t - f a m i l y :   ' S h a r e   T e c h   M o n o ' ,   m o n o s p a c e ;  
         c o l o r :   # 8 8 8 ;  
         f o n t - s i z e :   1 r e m ;  
         f o n t - w e i g h t :   4 0 0 ;  
 }  
  
 . l o c k e d - s t a t u s   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         p a d d i n g :   8 p x   1 6 p x ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         c o l o r :   v a r ( - - n e o n - b l u e ) ;  
         f o n t - f a m i l y :   ' S h a r e   T e c h   M o n o ' ,   m o n o s p a c e ;  
         l e t t e r - s p a c i n g :   1 p x ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   2 4 3 ,   2 5 5 ,   0 . 2 ) ;  
 }  
  
 @ k e y f r a m e s   s p i n - l o c k   {  
         0 %   {  
                 t r a n s f o r m :   r o t a t e ( 0 d e g ) ;  
         }  
  
         1 0 0 %   {  
                 t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ;  
         }  
 }  
  
 / *   R e s p o n s i v e   a d j u s t m e n t s   f o r   l o c k e d   c a r d   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . l o c k e d - w r a p p e r   {  
                 p a d d i n g :   2 0 p x   1 0 p x ;  
                 m i n - h e i g h t :   a u t o ;  
         }  
  
         . l o c k e d - c a r d   {  
                 p a d d i n g :   2 r e m   1 . 5 r e m ;  
         }  
  
         . l o c k e d - t e x t - t i t l e   {  
                 f o n t - s i z e :   1 . 5 r e m ;  
         }  
  
         . l o c k - r i n g   {  
                 w i d t h :   6 0 p x ;  
                 h e i g h t :   6 0 p x ;  
         }  
  
         . l o c k - i c o n - c e n t e r   {  
                 f o n t - s i z e :   1 . 5 r e m ;  
         }  
 }  
 / *   C e n t e r i n g   W r a p p e r   * /  
 . c e n t e r e d - w r a p p e r   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m i n - h e i g h t :   4 0 0 p x ;  
         / *   F o r c e   h e i g h t   t o   c e n t e r   v e r t i c a l l y   * /  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   2 0 p x ;  
 }  
  
 / *   E n s u r e   c o m i n g - s o o n - c o n t a i n e r   i s   p r o p e r l y   s i z e d   * /  
 . c o m i n g - s o o n - c o n t a i n e r   {  
         m a x - w i d t h :   8 0 0 p x ;  
         w i d t h :   1 0 0 % ;  
         / *   K e e p   p r e v i o u s   s t y l e s   * /  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . c e n t e r e d - w r a p p e r   {  
                 m i n - h e i g h t :   3 0 0 p x ;  
                 p a d d i n g :   1 0 p x ;  
         }  
 }  
 