* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --white: #ffffff;
    --white-soft: #e0e0e0;
    --gray: #666666;
    --gray-dark: #333333;
    --accent: #ffffff;
}

body {
    font-family: 'Syne', sans-serif;
    background-color: var(--bg-primary);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Noise texture overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: 1000;
}

/* Corner decorations */
.corner {
    position: fixed;
    width: 60px;
    height: 60px;
    border-color: var(--gray-dark);
    border-style: solid;
    border-width: 0;
}

.corner-tl {
    top: 30px;
    left: 30px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.corner-tr {
    top: 30px;
    right: 30px;
    border-top-width: 1px;
    border-right-width: 1px;
}

.corner-bl {
    bottom: 30px;
    left: 30px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.corner-br {
    bottom: 30px;
    right: 30px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--gray-dark);
    border-radius: 100px;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.status-badge .text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
}

/* Title */
.title {
    margin-bottom: 40px;
}

.line {
    display: block;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-align: center;
}

.line-1 {
    font-size: clamp(32px, 8vw, 48px);
    color: var(--gray);
    animation: fadeUp 0.8s ease-out 0.3s both;
}

.line-2 {
    font-size: clamp(40px, 10vw, 72px);
    color: var(--white);
    margin-top: 8px;
    margin-left: -1em;
    animation: fadeUp 0.8s ease-out 0.5s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loader */
.loader {
    width: 200px;
    height: 2px;
    background: var(--gray-dark);
    margin: 0 auto 30px;
    border-radius: 2px;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.6s both;
}

.loader-bar {
    width: 40%;
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(150%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Subtitle */
.subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.5px;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.7s both;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-dark), transparent);
}

.divider-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gray);
}

/* Bio link */
.bio-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--gray-dark);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.9s both;
}

.bio-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bio-link:hover {
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bio-link:hover::before {
    opacity: 1;
}

.link-icon {
    font-size: 24px;
    transition: transform 0.4s ease;
}

.bio-link:hover .link-icon {
    transform: translateX(8px);
}

.link-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.link-url {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Footer */
.footer {
    margin-top: 60px;
    animation: fadeIn 1s ease-out 1s both;
}

.time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 2px;
}

/* Responsive - Tablets */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        max-width: 90%;
    }

    .status-badge {
        margin-bottom: 35px;
        padding: 6px 14px;
    }

    .status-badge .text {
        font-size: 10px;
    }

    .line-1 {
        font-size: clamp(24px, 7vw, 36px);
    }

    .line-2 {
        font-size: clamp(32px, 9vw, 56px);
    }

    .title {
        margin-bottom: 30px;
    }

    .loader {
        width: 150px;
        margin-bottom: 25px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .divider {
        gap: 15px;
        margin-bottom: 25px;
    }

    .divider-text {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .bio-link {
        padding: 20px 30px;
        width: 100%;
    }

    .link-text {
        font-size: 15px;
    }

    .link-url {
        font-size: 11px;
    }

    .footer {
        margin-top: 40px;
    }

    .time {
        font-size: 11px;
    }

    .corner {
        width: 45px;
        height: 45px;
    }

    .corner-tl, .corner-tr {
        top: 20px;
    }

    .corner-bl, .corner-br {
        bottom: 20px;
    }

    .corner-tl, .corner-bl {
        left: 20px;
    }

    .corner-tr, .corner-br {
        right: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 20px 15px;
        max-width: 100%;
    }

    .status-badge {
        margin-bottom: 30px;
        padding: 5px 12px;
    }

    .pulse {
        width: 6px;
        height: 6px;
    }

    .status-badge .text {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .line-1 {
        font-size: clamp(20px, 6vw, 28px);
    }

    .line-2 {
        font-size: clamp(26px, 8vw, 42px);
        margin-top: 6px;
    }

    .title {
        margin-bottom: 25px;
    }

    .loader {
        width: 120px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 12px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .divider {
        gap: 10px;
        margin-bottom: 20px;
    }

    .divider-text {
        font-size: 8px;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }

    .bio-link {
        padding: 18px 20px;
        width: 100%;
        border-radius: 10px;
    }

    .link-icon {
        font-size: 20px;
    }

    .link-text {
        font-size: 14px;
    }

    .link-url {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .footer {
        margin-top: 35px;
    }

    .time {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .corner {
        width: 30px;
        height: 30px;
    }

    .corner-tl, .corner-tr {
        top: 12px;
    }

    .corner-bl, .corner-br {
        bottom: 12px;
    }

    .corner-tl, .corner-bl {
        left: 12px;
    }

    .corner-tr, .corner-br {
        right: 12px;
    }
}

/* Responsive - Very small screens */
@media (max-width: 360px) {
    .line-1 {
        font-size: 18px;
    }

    .line-2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 11px;
    }

    .divider-text {
        font-size: 7px;
    }

    .bio-link {
        padding: 15px;
    }

    .link-text {
        font-size: 13px;
    }

    .corner {
        display: none;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        padding: 15px;
    }

    .status-badge {
        margin-bottom: 15px;
    }

    .title {
        margin-bottom: 15px;
    }

    .line-1 {
        font-size: 20px;
    }

    .line-2 {
        font-size: 28px;
    }

    .loader {
        margin-bottom: 10px;
    }

    .subtitle {
        margin-bottom: 15px;
        font-size: 11px;
    }

    .divider {
        margin-bottom: 15px;
    }

    .bio-link {
        padding: 12px 20px;
    }

    .footer {
        margin-top: 20px;
    }

    .corner {
        display: none;
    }
}

