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

:root {
    --bg: #000000;
    --surface: #050505;
    --text: #ffffff;
    --text-secondary: #808080;
    --accent: #ffffff;
    --border: #1a1a1a;
    --red: #ff0040;
}

*,
*::before,
*::after {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

*,
*::before,
*::after {
    cursor: none !important;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--text);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    will-change: transform;
    transition: width 0.2s, height 0.2s;
}

.cursor.hover {
    width: 20px;
    height: 20px;
}

.website-promo {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.website-promo:hover {
    border-color: var(--text);
    transform: translateY(-2px);
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.promo-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.promo-btn {
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    cursor: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text);
    transition: left 0.3s ease;
}

.promo-btn:hover::before {
    left: 0;
}

.promo-btn:hover {
    color: var(--bg);
}

.website-offer-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.website-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text), transparent);
    animation: scan-offer 4s linear infinite;
}

@keyframes scan-offer {
    to {
        left: 100%;
    }
}

.offer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-title {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-bottom: 1rem;
    position: relative;
}

.offer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 1rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    cursor: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.form-submit-btn:hover::before {
    left: 0;
}

.form-submit-btn:hover {
    color: var(--bg);
}

.form-submit-btn:hover .submit-arrow {
    transform: translateX(5px);
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-text {
    position: relative;
    z-index: 1;
}

.submit-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.5rem;
    transition: all 0.3s ease;
}

.form-status.success {
    color: #00ff88;
}

.form-status.error {
    color: var(--red);
}

.start-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.start-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.start-text {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.3;
    }
}

.volume-control {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.9);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    z-index: 1000;
}

.volume-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.volume-slider {
    width: 80px;
    height: 2px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--text);
    cursor: none;
}

.volume-value {
    font-size: 0.8rem;
    min-width: 30px;
    text-align: right;
}

.visitor-counter {
    display: none !important;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--border);
    padding: 1rem;
    z-index: 100;
    transition: all 0.3s ease;
}

.visitor-counter:hover {
    border-color: var(--text);
    transform: translateY(-2px);
}

.counter-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.counter-value {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-text {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.loading-progress {
    width: 200px;
    height: 1px;
    background: var(--border);
}

.progress-bar {
    height: 100%;
    background: var(--text);
    animation: load 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes load {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes scan {
    to {
        transform: translateY(100vh);
    }
}

.binary-rain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
}

.rain-column {
    position: absolute;
    top: -100%;
    width: 20px;
    height: 100%;
    font-family: monospace;
    font-size: 10px;
    line-height: 10px;
    animation: rain-fall 15s linear infinite;
}

.rain-column:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.rain-column:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.rain-column:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.rain-column:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.rain-column:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

.rain-column::before {
    content: "10110101001110010110101001110010110101001110010110101001110010110101001110010110101001110";
    writing-mode: vertical-rl;
    text-orientation: upright;
}

@keyframes rain-fall {
    to {
        transform: translateY(200%);
    }
}

.geometric-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.geo-element {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.geo-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    transform: rotate(45deg);
    animation: drift 30s linear infinite;
}

.geo-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: drift 40s linear infinite reverse;
}

.geo-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    animation: rotate 60s linear infinite;
}

.geo-4 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float-geo 20s ease-in-out infinite;
}

.geo-5 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 15%;
    border-radius: 50%;
    animation: pulse-geo 4s ease-in-out infinite;
}

@keyframes drift {
    to {
        transform: rotate(405deg) translateX(50px);
    }
}

@keyframes rotate {
    to {
        transform: translate(-50%, -50%) rotate(390deg);
    }
}

@keyframes float-geo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -50px);
    }
}

@keyframes pulse-geo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.05;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}

#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.audio-spectrum {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 40px;
    z-index: 100;
}

.audio-spectrum span {
    width: 2px;
    background: var(--text);
    opacity: 0.3;
    transition: height 0.1s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.header {
    text-align: center;
    margin-bottom: 6rem;
}

.profile-section {
    display: inline-block;
}

.profile-frame {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 3rem;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--text);
    transition: all 0.3s ease;
}

.profile-frame:hover .frame-corner {
    width: 30px;
    height: 30px;
}

.frame-corner.tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.profile-glitch-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.3s ease;
}

.profile-glitch-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0;
    mix-blend-mode: screen;
}

.profile-frame:hover .profile-image {
    filter: grayscale(0%) contrast(1.2);
    animation: glitch-img 0.3s steps(2, end);
}

.profile-frame:hover .profile-glitch-layer:nth-child(2) {
    opacity: 0.8;
    animation: glitch-1 0.3s steps(2, end);
}

.profile-frame:hover .profile-glitch-layer:nth-child(3) {
    opacity: 0.8;
    animation: glitch-2 0.3s steps(2, end);
}

@keyframes glitch-img {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-1 {

    0%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    20% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-5px);
    }

    40% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(5px);
    }

    60% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(-5px);
    }

    80% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(5px);
    }
}

@keyframes glitch-2 {

    0%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    20% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(5px);
    }

    40% {
        clip-path: inset(30% 0 50% 0);
        transform: translate(-5px);
    }

    60% {
        clip-path: inset(80% 0 10% 0);
        transform: translate(5px);
    }

    80% {
        clip-path: inset(5% 0 80% 0);
        transform: translate(-5px);
    }
}

.profile-scanner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 0, 64, 0.5);
    animation: scan-profile 3s linear infinite;
    opacity: 0;
    pointer-events: none;
}

.profile-frame:hover .profile-scanner {
    opacity: 1;
}

@keyframes scan-profile {
    to {
        transform: translateY(140px);
    }
}

.name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    position: relative;
}

.char {
    display: inline-block;
    animation: char-float 6s ease-in-out infinite;
    animation-delay: calc(var(--char-index) * 0.1s);
    text-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
}

@keyframes char-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.status-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.status-indicator {
    width: 6px;
    height: 6px;
    background: var(--red);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 0, 64, 0.7);
    }

    50% {
        opacity: 0.3;
        box-shadow: 0 0 0 10px rgba(255, 0, 64, 0);
    }
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
    flex-wrap: wrap;
}

.nav-btn {
    background: var(--bg);
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    cursor: none;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-btn:hover::before,
.nav-btn.active::before {
    border-color: var(--text);
}

.nav-btn:hover,
.nav-btn.active {
    color: var(--text);
    transform: scale(1.05);
}

.nav-line {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn.active .nav-line {
    transform: scaleX(1);
}

.content-wrapper {
    min-height: 500px;
}

.section {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    margin-bottom: 4rem;
}

.glitch-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-title:hover::before {
    opacity: 0.7;
    animation: glitch-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    color: var(--red);
}

.glitch-title:hover::after {
    opacity: 0.7;
    animation: glitch-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    color: var(--text-secondary);
}

.title-line {
    width: 50px;
    height: 1px;
    background: var(--text);
    animation: expand-line 1s ease-out;
}

@keyframes expand-line {
    from {
        width: 0;
    }

    to {
        width: 50px;
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-text {
    margin-bottom: 4rem;
}

.typing-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    overflow: hidden;
    border-right: 2px solid var(--text);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

.typing-text.delayed {
    animation-delay: 3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes typing {
    from {
        width: 0;
        opacity: 1;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--text);
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card {
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-secondary);
}

.metric-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover .metric-background {
    opacity: 1;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.metric-value-text {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-value,
.metric-card:hover .metric-value-text {
    transform: scale(1.1);
}

.metric-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.metric-bar {
    height: 2px;
    background: var(--border);
    position: relative;
    margin-bottom: 1rem;
}

.metric-fill {
    height: 100%;
    background: var(--text);
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:nth-child(1) .metric-fill {
    width: 100%;
}

.metric-card:nth-child(2) .metric-fill {
    width: 100%;
}

.metric-card:nth-child(3) .metric-fill {
    width: 100%;
}

.metric-card:nth-child(4) .metric-fill {
    width: 100%;
}

.targets-container {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.target-block {
    padding: 2rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--text-secondary);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.target-block:hover {
    transform: translateY(-5px);
    border-color: var(--text);
    box-shadow: -5px 5px 20px rgba(255, 255, 255, 0.05);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

.target-block.expanded .block-header {
    margin-bottom: 1.5rem;
}

.expand-text {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.target-block:hover .expand-text {
    color: var(--text);
}

.block-icon {
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-icon svg {
    width: 32px;
    height: 32px;
}

.block-title {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--text);
}

.block-content {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.target-block.expanded .block-content {
    max-height: 2000px;
    opacity: 1;
}

.block-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.email-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.email-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.email-subject {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.email-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.email-meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.email-meta-label {
    width: 45px;
    color: #666;
}

.email-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: auto;
    border: 1px solid rgba(0, 255, 128, 0.2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.email-badge svg {
    width: 12px;
    height: 12px;
}

.email-body {
    padding: 1.5rem;
    color: var(--text);
    line-height: 1.6;
    white-space: pre-wrap;
    font-size: 0.95rem;
    border-left: 2px solid transparent;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

.terminal-list {
    margin-top: 1rem;
    list-style-type: none;
    padding-left: 0;
}

.terminal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.terminal-list li::before {
    content: '>_';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-secondary);
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.skateboard-animation {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.skateboard {
    position: relative;
    animation: skate-move 4s ease-in-out infinite;
}

.deck {
    width: 120px;
    height: 12px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.deck::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    border-radius: 2px;
}

.deck::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.truck {
    position: absolute;
    bottom: -8px;
    width: 8px;
    height: 16px;
    background: linear-gradient(180deg, #666 0%, #444 50%, #333 100%);
    border-radius: 2px;
}

.truck-1 {
    left: 20px;
    animation: truck-bend 4s ease-in-out infinite;
}

.truck-2 {
    right: 20px;
    animation: truck-bend 4s ease-in-out infinite;
    animation-delay: -0.5s;
}

.truck::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #888;
    border-radius: 50%;
}

.wheel {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #444 0%, #222 50%, #111 100%);
    border-radius: 50%;
    position: absolute;
    bottom: -14px;
    border: 2px solid #333;
    animation: wheel-spin 0.3s linear infinite;
}

.wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #555;
    border-radius: 50%;
    border: 1px solid #222;
}

.wheel::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px dashed #444;
    animation: wheel-detail-spin 0.3s linear infinite;
}

.wheel-1 {
    left: 12px;
}

.wheel-2 {
    left: 32px;
}

.wheel-3 {
    right: 32px;
}

.wheel-4 {
    right: 12px;
}

.skate-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(4px);
    animation: shadow-scale 4s ease-in-out infinite;
}

.skate-spark {
    position: absolute;
    bottom: -20px;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: spark-fly 4s ease-in-out infinite;
}

.skate-spark:nth-child(1) {
    left: 15px;
    animation-delay: 0s;
}

.skate-spark:nth-child(2) {
    right: 15px;
    animation-delay: -2s;
}

@keyframes skate-move {

    0%,
    100% {
        transform: translateX(-30px) rotate(-8deg) translateY(0);
    }

    25% {
        transform: translateX(0px) rotate(-4deg) translateY(-5px);
    }

    50% {
        transform: translateX(30px) rotate(8deg) translateY(0);
    }

    75% {
        transform: translateX(0px) rotate(4deg) translateY(-5px);
    }
}

@keyframes truck-bend {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes wheel-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes wheel-detail-spin {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes shadow-scale {

    0%,
    100% {
        transform: translateX(-50%) scaleX(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translateX(-50%) scaleX(1.2);
        opacity: 0.5;
    }
}

@keyframes spark-fly {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        transform: translate(-20px, -15px) scale(0.5);
    }

    60% {
        opacity: 0;
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 0;
        transform: translate(20px, -15px) scale(0.5);
    }
}

.code-snippet {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1rem;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.code-snippet pre {
    margin: 0;
}

.code-snippet code {
    color: var(--text);
}

.code-keyword {
    color: var(--text-secondary);
    font-weight: bold;
}

.code-function {
    color: var(--text);
}

.code-string {
    color: var(--text-secondary);
    opacity: 0.8;
}

.code-number {
    color: var(--text);
}

.code-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.spotify-player {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border: 1px solid var(--border);
    background: var(--surface);
    margin: 1rem 0;
}

.spotify-player:hover {
    border-color: var(--text);
    transform: scale(1.02);
}

.spotify-album {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.album-cover {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-art {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--border), var(--surface));
    border: 2px solid var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.album-art::before {
    content: '';
    position: absolute;
    inset: 30%;
    background: var(--bg);
    border-radius: 50%;
}

.album-inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    z-index: 1;
}

.album-text {
    line-height: 1;
}

.spotify-player:hover .album-art {
    animation: spin-slow 3s linear infinite;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.spotify-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spotify-logo svg {
    color: var(--text);
}

.play-text {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.spotify-player.playing .play-text {
    color: var(--text);
}

.sound-waves {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 30px;
}

.sound-waves span {
    width: 3px;
    background: var(--text-secondary);
    animation: wave 1s ease-in-out infinite;
}

.sound-waves span:nth-child(1) {
    animation-delay: 0s;
}

.sound-waves span:nth-child(2) {
    animation-delay: 0.1s;
}

.sound-waves span:nth-child(3) {
    animation-delay: 0.2s;
}

.sound-waves span:nth-child(4) {
    animation-delay: 0.3s;
}

.sound-waves span:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        height: 10px;
    }

    50% {
        height: 30px;
    }
}

.music-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

.connect-container {
    max-width: 600px;
    margin: 0 auto;
}

.connect-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.magnetic-link {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.link-bg {
    position: absolute;
    inset: 0;
    background: var(--text);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.magnetic-link:hover .link-bg {
    transform: translateX(0);
}

.connect-link:hover .link-platform,
.connect-link:hover .link-handle {
    color: var(--bg);
    transform: translateX(10px);
}

.magnetic-link:hover {
    color: var(--bg);
    transform: translateX(10px);
}

.magnetic-link:hover .link-number,
.magnetic-link:hover .link-platform,
.magnetic-link:hover .link-handle,
.magnetic-link:hover .link-arrow {
    color: var(--bg);
    position: relative;
    z-index: 1;
}

.link-number {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.link-content {
    display: grid;
    gap: 0.25rem;
}

.link-platform {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.link-handle {
    font-size: 1.1rem;
}

.link-arrow {
    display: flex;
    align-items: center;
    gap: 2px;
    transition: gap 0.3s ease;
}

.link-arrow span {
    display: block;
    width: 15px;
    height: 1px;
    background: currentColor;
    position: relative;
}

.link-arrow span:last-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 1px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: right;
}

.link-arrow span:last-child::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 1px;
    background: currentColor;
    transform: rotate(-45deg);
    transform-origin: right;
}

.magnetic-link:hover .link-arrow {
    gap: 6px;
}

.contact-footer {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border);
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.time-dot {
    width: 6px;
    height: 6px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink-dot 2s infinite;
}

@keyframes blink-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.message-board {
    position: fixed;
    right: 50px;
    top: 45%;
    transform: translateY(-50%);
    width: 320px;
    max-height: 450px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-board.collapsed {
    width: auto;
    max-height: auto;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.message-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.message-board.collapsed .message-board-header {
    padding: 0;
}

.board-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.3s ease;
}

.message-board.collapsed .board-title {
    display: none;
}

.toggle-board-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.message-board.collapsed .toggle-board-btn {
    animation: pulse-white 2s ease-in-out infinite;
    border-width: 2px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes pulse-white {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

.toggle-board-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.toggle-board-btn:hover::before {
    left: 100%;
}

.toggle-board-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.message-board-content {
    display: flex;
    flex-direction: column;
    height: 400px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.message-board.collapsed .message-board-content {
    display: none;
}

.messages-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messages-container::-webkit-scrollbar {
    width: 3px;
}

.messages-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.messages-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
}

.message-item {
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    animation: messageSlide 0.5s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.message-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: messageShine 3s ease infinite;
}

@keyframes messageShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.message-username {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.message-country {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

.message-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    word-wrap: break-word;
    margin-bottom: 5px;
}

.message-time {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    font-variant-numeric: tabular-nums;
}

.message-input-container {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
}

.message-input-container.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.message-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.message-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.message-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.message-textarea {
    resize: none;
    height: 50px;
    font-family: inherit;
}

.send-message-btn {
    width: 100%;
    padding: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.send-message-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.send-message-btn:hover::before {
    left: 0;
}

.send-message-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.send-message-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.message-status {
    margin-top: 8px;
    font-size: 10px;
    text-align: center;
    height: 15px;
    letter-spacing: 0.5px;
}

.message-status.success {
    color: rgba(255, 255, 255, 0.6);
}

.message-status.error {
    color: rgba(255, 68, 68, 0.6);
}

.loading-messages {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    padding: 20px;
}

.languages-visual {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.language-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.language-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.language-card:hover::before {
    opacity: 1;
}

.language-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.lang-circle {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 3;
}

.circle-fill {
    fill: none;
    stroke: var(--text);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.language-card[data-lang="c"] .circle-fill {
    stroke: #A8B9CC;
    filter: drop-shadow(0 0 8px rgba(168, 185, 204, 0.6));
}

.language-card[data-lang="cpp"] .circle-fill {
    stroke: #00599C;
    filter: drop-shadow(0 0 8px rgba(0, 89, 156, 0.6));
}

.language-card[data-lang="java"] .circle-fill {
    stroke: #f89820;
    filter: drop-shadow(0 0 8px rgba(248, 152, 32, 0.6));
}

.language-card:hover .circle-fill {
    animation: pulse-circle 2s ease-in-out infinite;
}

@keyframes pulse-circle {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.9));
    }
}

.language-card[data-lang="c"]:hover .circle-fill {
    animation: pulse-circle-c 2s ease-in-out infinite;
}

.language-card[data-lang="cpp"]:hover .circle-fill {
    animation: pulse-circle-cpp 2s ease-in-out infinite;
}

.language-card[data-lang="java"]:hover .circle-fill {
    animation: pulse-circle-java 2s ease-in-out infinite;
}

@keyframes pulse-circle-c {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(168, 185, 204, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(168, 185, 204, 1));
    }
}

@keyframes pulse-circle-cpp {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(0, 89, 156, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(0, 89, 156, 1));
    }
}

@keyframes pulse-circle-java {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(248, 152, 32, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(248, 152, 32, 1));
    }
}

.lang-letter {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.language-card[data-lang="c"] .lang-letter {
    color: #A8B9CC;
}

.language-card[data-lang="cpp"] .lang-letter {
    color: #00599C;
    font-size: 1.5rem;
}

.language-card[data-lang="java"] .lang-letter {
    color: #f89820;
}

.language-card:hover .lang-letter {
    text-shadow: 0 0 20px currentColor;
    transform: scale(1.1);
}

.lang-name {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--text);
    text-transform: uppercase;
    font-weight: 300;
}

.lang-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lang-icon svg {
    transition: all 0.3s ease;
}

.language-card[data-lang="c"] .lang-icon {
    color: #A8B9CC;
}

.language-card[data-lang="cpp"] .lang-icon {
    color: #00599C;
}

.language-card[data-lang="java"] .lang-icon {
    color: #f89820;
}

.language-card:hover .lang-icon {
    opacity: 1;
    transform: scale(1.1);
}

.language-card[data-lang="c"]:hover .lang-icon {
    filter: drop-shadow(0 0 8px rgba(168, 185, 204, 0.8));
}

.language-card[data-lang="cpp"]:hover .lang-icon {
    filter: drop-shadow(0 0 8px rgba(0, 89, 156, 0.8));
}

.language-card[data-lang="java"]:hover .lang-icon {
    filter: drop-shadow(0 0 8px rgba(248, 152, 32, 0.8));
}

.code-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

@media (max-width: 1400px) {
    .message-board {
        right: 20px;
    }

    .website-promo {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {

    .nav-btn {
        cursor: pointer;
    }

    .container {
        padding: 2rem 1rem;
    }

    .name {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .navigation {
        gap: 0.5rem;
    }

    .nav-btn {
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-value-text {
        font-size: 1.5rem;
    }

    .targets-container {
        gap: 1rem;
    }

    .target-block {
        padding: 1.5rem;
    }

    .spotify-album {
        flex-direction: column;
        text-align: center;
    }

    .geometric-container {
        display: none;
    }

    .binary-rain {
        display: none;
    }

    .visitor-counter {
        position: fixed;
        top: auto;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 0.75rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .counter-label {
        font-size: 0.6rem;
    }

    .counter-value {
        font-size: 1.2rem;
    }

    .volume-control {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .audio-spectrum {
        display: none;
    }

    .glitch-title {
        font-size: 1.5rem;
    }

    .typing-text {
        font-size: 1rem;
        white-space: normal;
        animation: none;
        border-right: none;
        width: 100% !important;
        opacity: 1 !important;
    }

    .magnetic-link {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }

    .link-number {
        display: none;
    }

    .link-handle {
        font-size: 0.9rem;
        word-break: break-all;
    }

    .link-arrow {
        display: none;
    }

    .status-line {
        font-size: 0.7rem;
        gap: 0.5rem;
    }

    .header {
        margin-bottom: 3rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .connect-grid {
        gap: 0.5rem;
    }
}

@media (max-width: 1400px) {
    .message-board {
        right: 10px;
        left: auto;
        top: 40%;
        width: calc(100% - 80px);
        max-width: 300px;
        max-height: 400px;
    }

    .message-board-content {
        height: 350px;
    }

    .toggle-board-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    .website-promo {
        position: fixed;
        top: auto;
        bottom: 5rem;
        right: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
    }

    .promo-content {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .promo-btn {
        width: 100%;
    }

    .website-offer-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .offer-title {
        font-size: 1.3rem;
    }

    .form-input,
    .form-textarea {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .message-board {
        right: 5px;
        max-width: 280px;
    }

    .website-promo {
        bottom: 4rem;
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes glitch-text {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}
