/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    cursor: auto;
}

/* Neural Canvas */
#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 170, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 170, 0.03) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -2;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Scanlines effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
    animation: scanlines 0.1s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header */
.main-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Header styles simplified */

.name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin: 0;
    animation: textGlow 4s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(0, 136, 204, 0.4);
    }
}

/* Back button styles removed */

.subtitle {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Sections */
.section {
    text-align: left;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.section-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 10px;
}

/* Links */
.email {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.email:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    opacity: 1;
    color: #00aaff;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

.telegram-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.telegram-link:hover .telegram-icon {
    fill: #00aaff;
    transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    /* Responsive adjustments */
    
    .section-title {
        font-size: 1rem;
    }
    
    .section-content {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }
    
    .container {
        padding: 20px 10px;
    }
    
    .section-title {
        font-size: 0.9rem;
    }
    
    .section-content {
        font-size: 0.85rem;
    }
}