* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

body * {
    cursor: none;
}
.custom-cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(78, 205, 196, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    will-change: transform, opacity;
    transform: translate3d(0,0,0);
    transition: transform 0.12s ease, opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.25);
    opacity: 0.9;
}

.custom-cursor-ring.hover {
    border-color: rgba(78, 205, 196, 0.6);
    box-shadow: 0 0 40px rgba(78, 205, 196, 0.45);
    transform: translate3d(0,0,0) scale(1.1);
}


body a, body button, body input, body textarea, body select {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    background: rgba(78, 205, 196, 0.85);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    transform: translate3d(0,0,0);
    transition: transform 0.06s linear, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.25), 0 0 18px rgba(78, 205, 196, 0.35);
}

.custom-cursor.hover {
    transform: translate3d(0,0,0) scale(1.35);
    background: rgba(78, 205, 196, 1);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.35), 0 0 24px rgba(78, 205, 196, 0.55);
}

.hacker-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 255, 0.02) 0%, transparent 50%);
}

.hacker-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hacker-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 0, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(2n) {
    background: rgba(0, 255, 255, 0.6);
    animation-duration: 12s;
}

.particle:nth-child(3n) {
    background: rgba(255, 0, 255, 0.6);
    animation-duration: 10s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.touch-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.touch-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.touch-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    animation: fadeInUp 1s ease-out;
}

.touch-logo {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.touch-message {
    margin-bottom: 50px;
}

.touch-message p {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

.touch-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 16px;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.touch-button:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(78, 205, 196, 0.3);
}

.touch-button:active {
    transform: translateY(-1px);
}

.touch-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4ecdc4;
    letter-spacing: -0.01em;
}

.touch-arrow {
    font-size: 1.5rem;
    color: #4ecdc4;
    transition: transform 0.3s ease;
}

.touch-button:hover .touch-arrow {
    transform: translateX(5px);
}

.touch-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.2), transparent);
    transition: left 0.6s ease;
}

.touch-button:hover::before {
    left: 100%;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.loading-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 2s ease-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

.loading-text {
    color: #a0a0a0;
    font-size: 0.9rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.volume-control {
    position: fixed;
    top: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 20px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.volume-control:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.volume-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.volume-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.volume-control:hover .volume-icon {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.volume-slider {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.volume-slider:hover {
    background: rgba(255, 255, 255, 0.12);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

.volume-slider::-webkit-slider-thumb:active {
    transform: scale(1.15);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

.volume-slider::-moz-range-thumb:active {
    transform: scale(1.15);
}

.volume-value {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    min-width: 36px;
    text-align: center;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.volume-control:hover .volume-value {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.view-counter {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 16px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.view-counter:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.view-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-counter:hover .view-icon {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

#viewCount {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-counter:hover #viewCount {
    color: rgba(255, 255, 255, 0.9);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    animation: fadeInUp 0.8s ease-out;
    perspective: 1200px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    animation: floatIdle 6s ease-in-out 1.2s infinite alternate, slideInUp 0.6s ease-out 0.2s both;
    transform-style: preserve-3d;
}
@keyframes floatIdle {
    0% { transform: translateY(0) rotateX(0deg) rotateY(0deg); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35); }
    100% { transform: translateY(-10px) rotateX(0.3deg) rotateY(-0.3deg); box-shadow: 0 36px 70px rgba(0, 0, 0, 0.42); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card::before {
    content: '';
    position: absolute;
    inset: -60px -60px auto -60px;
    height: 140px;
    filter: blur(40px);
    background: radial-gradient(600px 120px at 50% 0%, rgba(78,205,196,0.12), transparent 70%);
    pointer-events: none;
}

.profile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 40px 100px rgba(0,0,0,0.55);
    pointer-events: none;
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.profile-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    animation: scaleIn 0.6s ease-out 0.6s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.02em;
    animation: slideInLeft 0.6s ease-out 0.8s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.profile-info p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 400;
    animation: slideInLeft 0.6s ease-out 1s both;
}

.profile-info p:last-child {
    color: #808080;
    font-size: 0.8rem;
    animation: slideInLeft 0.6s ease-out 1.2s both;
}

.navigation-section {
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out 1.4s both;
}

.navigation-section h3,
.social-section h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.01em;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    animation: slideInUp 0.6s ease-out 1.6s both;
    position: relative;
    box-shadow: 0 10px 26px rgba(0,0,0,0.24);
}
.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(78,205,196,0.35), rgba(68,160,141,0.15));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.22);
}
.nav-link span { text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.4px; }
.nav-icon { filter: drop-shadow(0 2px 6px rgba(78,205,196,0.25)); }

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: fadeIn 0.8s ease-out 1.8s both;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.8rem;
    animation: scaleIn 0.6s ease-out 2s both;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.github:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.tryhackme:hover {
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 12px 24px rgba(255, 107, 107, 0.2);
}

.contact-btn:hover {
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 12px 24px rgba(78, 205, 196, 0.2);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header h2 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item label {
    color: #a0a0a0;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: -0.01em;
}

.info-value {
    display: flex;
    gap: 8px;
    align-items: center;
}

.info-value input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.8rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    transition: all 0.2s ease;
}

.info-value input:focus {
    outline: none;
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.copy-btn {
    padding: 12px 16px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 8px;
    color: #4ecdc4;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.8rem;
}

.copy-btn:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.5);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .profile-card {
        padding: 32px 24px;
    }
    
    .profile-info h1 {
        font-size: 1.75rem;
    }
    
    .nav-links {
        flex-direction: column;
    align-items: center;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .info-value {
        flex-direction: column;
        align-items: stretch;
    }
    
    .volume-control {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
    }
    
    .view-counter {
        bottom: 10px;
        left: 10px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 24px 20px;
    }
    
    .profile-info h1 {
        font-size: 1.5rem;
    }
    
    .social-link {
        padding: 16px 12px;
    }
}