@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

:root {
    --primary-color: #ffffff;
    --background-color: #000000;
    --glitch-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --link-color: rgba(255, 255, 255, 0.7);
    --link-hover-color: #ffffff;
}

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

body {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 0%, rgba(0, 0, 0, 1) 70%);
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.03) 50%, transparent 52%);
    background-size: 60px 60px;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVfJ/YAAAACHRSTlMzMzMzMzMzM85JBgUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAwSURBVDjLY2AYBaNgFAxXwMjIyMjAwMDAyMjIyMjAwMDAyMjIyMjAwMDAyMjIyMjAwMDAyMgIAHqjBQHh6QAAAABJRU5ErkJggg==');
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.glitch-wrapper {
    position: relative;
    margin-bottom: 0.05rem;
}

.glitch {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-color);
    text-shadow: none;
    animation: none;
    overflow: hidden;
    cursor: pointer;
}

.glitch-small {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-color);
    text-shadow: none;
    animation: none;
    overflow: hidden;
    cursor: pointer;
}

.glitch::before,
.glitch::after,
.glitch-small::before,
.glitch-small::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-anim-1 4s infinite linear alternate-reverse;
    opacity: 0.3;
    pointer-events: none;
}

.glitch::after,
.glitch-small::after {
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    animation: glitch-anim-2 4s infinite linear alternate-reverse;
    background: transparent;
    opacity: 0.3;
    pointer-events: none;
}

.glitch span,
.glitch-small span {
    position: relative;
    display: inline-block;
    animation: glitch-anim-3 4s infinite linear alternate-reverse;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glitch:hover span:nth-child(1),
.glitch-small:hover span:nth-child(1) {
    transform: translate(-20px, -30px) rotate(-10deg);
}

.glitch:hover span:nth-child(2),
.glitch-small:hover span:nth-child(2) {
    transform: translate(10px, -20px) rotate(5deg);
}

.glitch:hover span:nth-child(3),
.glitch-small:hover span:nth-child(3) {
    transform: translate(-15px, 20px) rotate(-5deg);
}

.glitch:hover span:nth-child(4),
.glitch-small:hover span:nth-child(4) {
    transform: translate(20px, 15px) rotate(10deg);
}

.glitch:hover span:nth-child(5),
.glitch-small:hover span:nth-child(5) {
    transform: translate(-10px, -25px) rotate(-15deg);
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
    20% {
        clip-path: polygon(0 15%, 100% 15%, 100% 45%, 0 45%);
        transform: translate(-5px, 5px);
    }
    40% {
        clip-path: polygon(0 30%, 100% 30%, 100% 45%, 0 45%);
        transform: translate(5px, -5px);
    }
    60% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
    80% {
        clip-path: polygon(0 5%, 100% 5%, 100% 45%, 0 45%);
        transform: translate(-3px, 3px);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
        transform: translate(0);
    }
    20% {
        clip-path: polygon(0 60%, 100% 60%, 100% 85%, 0 85%);
        transform: translate(5px, -5px);
    }
    40% {
        clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
        transform: translate(-5px, 5px);
    }
    60% {
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
        transform: translate(0);
    }
    80% {
        clip-path: polygon(0 60%, 100% 60%, 100% 95%, 0 95%);
        transform: translate(3px, -3px);
    }
    100% {
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
        transform: translate(0);
    }
}

@keyframes glitch-anim-3 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(2px, -2px);
    }
    60% {
        transform: translate(0);
    }
    80% {
        transform: translate(-1px, 1px);
    }
    100% {
        transform: translate(0);
    }
}

.glitch-wrapper::after {
    display: none;
}

.magnetic-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 0.05rem;
}

.magnetic-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-out;
}

.circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease-out;
}

.circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease-out;
}

.circle:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.circle:hover::before {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 255, 255, 0.8);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    padding: 0.05rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    margin-top: -1.5rem;
}

.project-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease-out;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease-out;
}

.project-card:hover::before {
    transform: translateX(100%);
}

.project-card:not(.secret):hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-content {
    position: relative;
    z-index: 1;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.project-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: var(--link-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease-out;
}

.project-link:hover::before {
    transform: translateX(100%);
}

.project-link:hover {
    color: var(--link-hover-color);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.link-text {
    margin-right: 0.5rem;
}

.link-icon {
    transition: transform 0.3s ease-out;
}

.project-link:hover .link-icon {
    transform: translateX(3px);
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    pointer-events: none;
    z-index: 2;
}

.secret-text {
    font-size: 2rem;
    letter-spacing: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}

.project-card.secret {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card.secret:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .glitch {
        font-size: 3rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
}

.vow-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

.vow-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.vow-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.vow-content {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 800px;
    border: 1px solid var(--primary-color);
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease-out;
}

.vow-text {
    color: var(--primary-color);
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    text-align: left;
}

.vow-text p {
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.vow-text p:nth-child(1) { animation-delay: 0.1s; }
.vow-text p:nth-child(2) { animation-delay: 0.2s; }
.vow-text p:nth-child(3) { animation-delay: 0.3s; }
.vow-text p:nth-child(4) { animation-delay: 0.4s; }
.vow-text p:nth-child(5) { animation-delay: 0.5s; }
.vow-text p:nth-child(6) { animation-delay: 0.6s; }
.vow-text p:nth-child(7) { animation-delay: 0.7s; }
.vow-text p:nth-child(8) { animation-delay: 0.8s; }
.vow-text p:nth-child(9) { animation-delay: 0.9s; }
.vow-text p:nth-child(10) { animation-delay: 1s; }
.vow-text p:nth-child(11) { animation-delay: 1.1s; }
.vow-text p:nth-child(12) { animation-delay: 1.2s; }
.vow-text p:nth-child(13) { animation-delay: 1.3s; }
.vow-text p:nth-child(14) { animation-delay: 1.4s; }
.vow-text p:nth-child(15) { animation-delay: 1.5s; }
.vow-text p:nth-child(16) { animation-delay: 1.6s; }
.vow-text p:nth-child(17) { animation-delay: 1.7s; }
.vow-text p:nth-child(18) { animation-delay: 1.8s; }
.vow-text p:nth-child(19) { animation-delay: 1.9s; }
.vow-text p:nth-child(20) { animation-delay: 2s; }

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

.close-vow {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.close-vow:hover {
    transform: rotate(90deg);
    color: rgba(255, 255, 255, 0.7);
}

.vow-modal.active {
    display: block;
    opacity: 1;
}

.vow-modal.active .vow-content {
    transform: translateY(0);
}

.cabal-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

.cabal-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cabal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.cabal-content {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 800px;
    border: 1px solid var(--primary-color);
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease-out;
}

.cabal-text {
    color: var(--primary-color);
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    text-align: left;
}

.cabal-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

.cabal-text h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: 0.2s;
}

.cabal-text p {
    margin: 0.8rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.cabal-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: 0.3s;
}

.cabal-text li {
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.cabal-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease-out;
}

.cabal-text a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.cabal-text p:nth-child(2) { animation-delay: 0.3s; }
.cabal-text p:nth-child(3) { animation-delay: 0.4s; }
.cabal-text p:nth-child(4) { animation-delay: 0.5s; }
.cabal-text p:nth-child(5) { animation-delay: 0.6s; }
.cabal-text p:nth-child(6) { animation-delay: 0.7s; }
.cabal-text p:nth-child(7) { animation-delay: 0.8s; }
.cabal-text p:nth-child(8) { animation-delay: 0.9s; }
.cabal-text p:nth-child(9) { animation-delay: 1.0s; }
.cabal-text p:nth-child(10) { animation-delay: 1.1s; }
.cabal-text p:nth-child(11) { animation-delay: 1.2s; }
.cabal-text p:nth-child(12) { animation-delay: 1.3s; }
.cabal-text p:nth-child(13) { animation-delay: 1.4s; }
.cabal-text p:nth-child(14) { animation-delay: 1.5s; }
.cabal-text p:nth-child(15) { animation-delay: 1.6s; }
.cabal-text p:nth-child(16) { animation-delay: 1.7s; }
.cabal-text p:nth-child(17) { animation-delay: 1.8s; }
.cabal-text p:nth-child(18) { animation-delay: 1.9s; }
.cabal-text p:nth-child(19) { animation-delay: 2.0s; }
.cabal-text p:nth-child(20) { animation-delay: 2.1s; }
.cabal-text p:nth-child(21) { animation-delay: 2.2s; }
.cabal-text p:nth-child(22) { animation-delay: 2.3s; }
.cabal-text p:nth-child(23) { animation-delay: 2.4s; }
.cabal-text p:nth-child(24) { animation-delay: 2.5s; }
.cabal-text p:nth-child(25) { animation-delay: 2.6s; }
.cabal-text p:nth-child(26) { animation-delay: 2.7s; }
.cabal-text p:nth-child(27) { animation-delay: 2.8s; }
.cabal-text p:nth-child(28) { animation-delay: 2.9s; }
.cabal-text p:nth-child(29) { animation-delay: 3.0s; }
.cabal-text p:nth-child(30) { animation-delay: 3.1s; }
.cabal-text p:nth-child(31) { animation-delay: 3.2s; }
.cabal-text p:nth-child(32) { animation-delay: 3.3s; }
.cabal-text p:nth-child(33) { animation-delay: 3.4s; }
.cabal-text p:nth-child(34) { animation-delay: 3.5s; }
.cabal-text p:nth-child(35) { animation-delay: 3.6s; }
.cabal-text p:nth-child(36) { animation-delay: 3.7s; }
.cabal-text p:nth-child(37) { animation-delay: 3.8s; }
.cabal-text p:nth-child(38) { animation-delay: 3.9s; }
.cabal-text p:nth-child(39) { animation-delay: 4.0s; }
.cabal-text p:nth-child(40) { animation-delay: 4.1s; }
.cabal-text p:nth-child(41) { animation-delay: 4.2s; }
.cabal-text p:nth-child(42) { animation-delay: 4.3s; }
.cabal-text p:nth-child(43) { animation-delay: 4.4s; }
.cabal-text p:nth-child(44) { animation-delay: 4.5s; }
.cabal-text p:nth-child(45) { animation-delay: 4.6s; }
.cabal-text p:nth-child(46) { animation-delay: 4.7s; }
.cabal-text p:nth-child(47) { animation-delay: 4.8s; }
.cabal-text p:nth-child(48) { animation-delay: 4.9s; }
.cabal-text p:nth-child(49) { animation-delay: 5.0s; }
.cabal-text p:nth-child(50) { animation-delay: 5.1s; }
.cabal-text p:nth-child(51) { animation-delay: 5.2s; }
.cabal-text p:nth-child(52) { animation-delay: 5.3s; }
.cabal-text p:nth-child(53) { animation-delay: 5.4s; }
.cabal-text p:nth-child(54) { animation-delay: 5.5s; }
.cabal-text p:nth-child(55) { animation-delay: 5.6s; }
.cabal-text p:nth-child(56) { animation-delay: 5.7s; }
.cabal-text p:nth-child(57) { animation-delay: 5.8s; }
.cabal-text p:nth-child(58) { animation-delay: 5.9s; }
.cabal-text p:nth-child(59) { animation-delay: 6.0s; }
.cabal-text p:nth-child(60) { animation-delay: 6.1s; }
.cabal-text p:nth-child(61) { animation-delay: 6.2s; }
.cabal-text p:nth-child(62) { animation-delay: 6.3s; }
.cabal-text p:nth-child(63) { animation-delay: 6.4s; }
.cabal-text p:nth-child(64) { animation-delay: 6.5s; }
.cabal-text p:nth-child(65) { animation-delay: 6.6s; }
.cabal-text p:nth-child(66) { animation-delay: 6.7s; }
.cabal-text p:nth-child(67) { animation-delay: 6.8s; }
.cabal-text p:nth-child(68) { animation-delay: 6.9s; }
.cabal-text p:nth-child(69) { animation-delay: 7.0s; }
.cabal-text p:nth-child(70) { animation-delay: 7.1s; }
.cabal-text p:nth-child(71) { animation-delay: 7.2s; }
.cabal-text p:nth-child(72) { animation-delay: 7.3s; }
.cabal-text p:nth-child(73) { animation-delay: 7.4s; }
.cabal-text p:nth-child(74) { animation-delay: 7.5s; }
.cabal-text p:nth-child(75) { animation-delay: 7.6s; }
.cabal-text p:nth-child(76) { animation-delay: 7.7s; }
.cabal-text p:nth-child(77) { animation-delay: 7.8s; }
.cabal-text p:nth-child(78) { animation-delay: 7.9s; }
.cabal-text p:nth-child(79) { animation-delay: 8.0s; }
.cabal-text p:nth-child(80) { animation-delay: 8.1s; }
.cabal-text p:nth-child(81) { animation-delay: 8.2s; }
.cabal-text p:nth-child(82) { animation-delay: 8.3s; }
.cabal-text p:nth-child(83) { animation-delay: 8.4s; }
.cabal-text p:nth-child(84) { animation-delay: 8.5s; }
.cabal-text p:nth-child(85) { animation-delay: 8.6s; }
.cabal-text p:nth-child(86) { animation-delay: 8.7s; }
.cabal-text p:nth-child(87) { animation-delay: 8.8s; }
.cabal-text p:nth-child(88) { animation-delay: 8.9s; }
.cabal-text p:nth-child(89) { animation-delay: 9.0s; }
.cabal-text p:nth-child(90) { animation-delay: 9.1s; }
.cabal-text p:nth-child(91) { animation-delay: 9.2s; }
.cabal-text p:nth-child(92) { animation-delay: 9.3s; }
.cabal-text p:nth-child(93) { animation-delay: 9.4s; }
.cabal-text p:nth-child(94) { animation-delay: 9.5s; }
.cabal-text p:nth-child(95) { animation-delay: 9.6s; }
.cabal-text p:nth-child(96) { animation-delay: 9.7s; }
.cabal-text p:nth-child(97) { animation-delay: 9.8s; }
.cabal-text p:nth-child(98) { animation-delay: 9.9s; }
.cabal-text p:nth-child(99) { animation-delay: 10.0s; }
.cabal-text p:nth-child(100) { animation-delay: 10.1s; }

.cabal-text li:nth-child(1) { animation-delay: 0.4s; }
.cabal-text li:nth-child(2) { animation-delay: 0.5s; }
.cabal-text li:nth-child(3) { animation-delay: 0.6s; }
.cabal-text li:nth-child(4) { animation-delay: 0.7s; }
.cabal-text li:nth-child(5) { animation-delay: 0.8s; }
.cabal-text li:nth-child(6) { animation-delay: 0.9s; }
.cabal-text li:nth-child(7) { animation-delay: 1.0s; }
.cabal-text li:nth-child(8) { animation-delay: 1.1s; }
.cabal-text li:nth-child(9) { animation-delay: 1.2s; }
.cabal-text li:nth-child(10) { animation-delay: 1.3s; }
.cabal-text li:nth-child(11) { animation-delay: 1.4s; }
.cabal-text li:nth-child(12) { animation-delay: 1.5s; }
.cabal-text li:nth-child(13) { animation-delay: 1.6s; }
.cabal-text li:nth-child(14) { animation-delay: 1.7s; }
.cabal-text li:nth-child(15) { animation-delay: 1.8s; }
.cabal-text li:nth-child(16) { animation-delay: 1.9s; }
.cabal-text li:nth-child(17) { animation-delay: 2.0s; }
.cabal-text li:nth-child(18) { animation-delay: 2.1s; }
.cabal-text li:nth-child(19) { animation-delay: 2.2s; }
.cabal-text li:nth-child(20) { animation-delay: 2.3s; }

.close-cabal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.close-cabal:hover {
    transform: rotate(90deg);
    color: rgba(255, 255, 255, 0.7);
}

.cabal-modal.active {
    display: block;
    opacity: 1;
}

.cabal-modal.active .cabal-content {
    transform: translateY(0);
}

.tagline {
    text-align: center;
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
    font-family: 'Space Mono', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.maintenance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background-color);
    z-index: 1000;
}

.maintenance-text {
    text-align: center;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
}

.maintenance-text p {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.maintenance-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--text-color);
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        left: -30%;
    }
    100% {
        left: 100%;
    }
} 