* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #000000 100%);
    color: white;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
		overflow: hidden;
}

/* Animated Background */
.animated-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { width: 2px; height: 2px; top: 10%; left: 20%; animation-delay: 0s; opacity: 0.3; }
.particle:nth-child(2) { width: 3px; height: 3px; top: 20%; left: 80%; animation-delay: 1s; opacity: 0.4; }
.particle:nth-child(3) { width: 1px; height: 1px; top: 30%; left: 60%; animation-delay: 2s; opacity: 0.2; }
.particle:nth-child(4) { width: 2px; height: 2px; top: 60%; left: 30%; animation-delay: 3s; opacity: 0.5; }
.particle:nth-child(5) { width: 3px; height: 3px; top: 70%; left: 70%; animation-delay: 4s; opacity: 0.3; }
.particle:nth-child(6) { width: 1px; height: 1px; top: 40%; left: 10%; animation-delay: 5s; opacity: 0.4; }
.particle:nth-child(7) { width: 2px; height: 2px; top: 80%; left: 90%; animation-delay: 2.5s; opacity: 0.2; }
.particle:nth-child(8) { width: 3px; height: 3px; top: 15%; left: 45%; animation-delay: 1.5s; opacity: 0.5; }
.particle:nth-child(9) { width: 1px; height: 1px; top: 85%; left: 25%; animation-delay: 3.5s; opacity: 0.3; }
.particle:nth-child(10) { width: 2px; height: 2px; top: 50%; left: 85%; animation-delay: 4.5s; opacity: 0.4; }

.gradient-line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: pulse 4s ease-in-out infinite;
}

.gradient-line-1 {
    top: 0;
    left: 25%;
    width: 1px;
    height: 100%;
    animation-delay: 0s;
}

.gradient-line-2 {
    top: 0;
    right: 33%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(147, 51, 234, 0.3), transparent);
    animation-delay: 1.5s;
}

.gradient-line-3 {
    left: 0;
    top: 33%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.3), transparent);
    animation-delay: 3s;
}

/* Ambient Effects */
.ambient-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.ambient-effect-1 {
    top: 100px;
    left: 100px;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
    animation-delay: 0s;
}

.ambient-effect-2 {
    bottom: 100px;
    right: 100px;
    width: 350px;
    height: 350px;
    background: rgba(147, 51, 234, 0.12);
    animation-delay: 2s;
}

.ambient-effect-3 {
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: rgba(6, 182, 212, 0.08);
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.profile-card {
    backdrop-filter: blur(25px);
    background: rgba(15, 15, 35, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 1;
    filter: blur(1px);
}

.profile-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 28px;
    background: rgba(15, 15, 35, 0.95);
    z-index: 1;
}

.profile-card > * {
    position: relative;
    z-index: 2;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 48px;
}

.avatar-container {
    margin-bottom: 40px;
}

.avatar {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.avatar:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.5);
}

.avatar.playing {
    animation: avatarPulse 1.5s ease-in-out infinite;
    border-color: rgba(59, 130, 246, 0.8);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-glow {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), transparent, rgba(147, 51, 234, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.avatar:hover .avatar-glow {
    opacity: 1;
}

.online-indicator {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #10b981;
    border-radius: 50%;
    border: 5px solid #0f0f23;
    animation: pulse 2s ease-in-out infinite;
}

.name {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.name:hover {
    transform: scale(1.02);
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #10b981;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Telegram Button */
.telegram-button-container {
    margin-bottom: 40px;
}

.telegram-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.telegram-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.button-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #1d4ed8, #0891b2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.telegram-button:hover .button-bg {
    opacity: 1;
}

.button-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.telegram-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.telegram-button:hover .telegram-icon {
    animation: bounce 1s ease-in-out infinite;
}

.button-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.telegram-button:hover .button-shine {
    transform: translateX(100%);
}

/* Quote Section */
.quote-section {
    text-align: center;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #d1d5db;
    border-left: 4px solid #3b82f6;
    padding-left: 30px;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 0 20px 20px 0;
    padding: 25px 30px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes avatarPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.8);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .profile-card {
        padding: 40px 30px;
    }
    
    .name {
        font-size: 3rem;
    }
    
    .avatar {
        width: 150px;
        height: 150px;
    }
    
    .status {
        font-size: 1.125rem;
    }
    
    .telegram-button {
        padding: 18px 30px;
        font-size: 1.125rem;
    }
    
    .quote {
        font-size: 1.25rem;
        padding: 20px 25px;
    }
    
    .ambient-effect-1,
    .ambient-effect-2 {
        width: 300px;
        height: 300px;
    }
    
    .ambient-effect-3 {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
    
    .status {
        font-size: 1rem;
    }
    
    .telegram-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .quote {
        font-size: 1.125rem;
        padding: 18px 20px;
        padding-left: 25px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .avatar img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}