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

body {
    font-family: 'Arial', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
}

/* Spotlight cursor effect */
.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: transparent;
    border: 2px solid rgba(255, 255, 0, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
    transition: all 0.02s ease;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 0, 0.3),
        0 0 30px rgba(255, 255, 0, 0.4),
        0 0 60px rgba(255, 255, 0, 0.3),
        0 0 100px rgba(255, 255, 0, 0.2);
}

/* Small spotlight state */
.cursor-spotlight.small {
    border: 1px solid rgba(255, 255, 0, 0.3);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 0, 0.1),
        0 0 5px rgba(255, 255, 0, 0.2);
}

/* Hero section with name */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
}

.hero-section::before {
    content: 'Move spotlight here to reveal text';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 5;
}

.name-container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.main-name {
    font-size: 10rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 
        0 0 0 2px #ffffff,
        0 0 0 4px #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: opacity 0.5s ease;
    font-family: 'Arial Black', Arial, sans-serif;
}

.main-name.visible {
    opacity: 1;
    text-shadow: 
        0 0 0 2px #ffffff,
        0 0 0 4px #ffffff;
}

/* Spotlight effect - text is only visible when spotlight hovers */
.main-name {
    position: relative;
}

.main-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1;
    transition: opacity 0.1s ease;
}

.main-name.spotlight-revealed::before {
    opacity: 0;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.bio-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    opacity: 0.7;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.bio-text ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.bio-text li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    text-align: left;
}

.social-links {
    margin-top: 2rem;
    text-align: left;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.linkedin-link:hover {
    color: #ffd700;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.linkedin-link:hover .arrow {
    transform: translateX(5px);
}





/* Mobile-specific styles */
@media (max-width: 768px) {
    /* Adjust hero section for mobile */
    .hero-section {
        padding: 2rem 1rem;
        min-height: 100vh;
    }
    
    .hero-section::before {
        font-size: 0.8rem;
        top: 10px;
    }
    
    /* Adjust main name for mobile */
    .main-name {
        font-size: 5rem;
        text-shadow: 
            0 0 0 1px #ffffff,
            0 0 0 2px #ffffff;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Adjust bio text for mobile */
    .bio-text {
        max-width: 90%;
        padding: 0 1rem;
        opacity: 0.8;
    }
    
    .bio-text p,
    .bio-text li {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .bio-text ul {
        padding-left: 1.5rem;
    }
    
    .linkedin-link {
        font-size: 0.9rem;
    }
    
    /* Adjust spotlight for mobile */
    .cursor-spotlight {
        border-width: 1px;
        box-shadow: 
            0 0 0 1px rgba(255, 255, 0, 0.2),
            0 0 20px rgba(255, 255, 0, 0.3),
            0 0 40px rgba(255, 255, 0, 0.2);
    }
    
    .cursor-spotlight.small {
        border-width: 1px;
        box-shadow: 
            0 0 0 1px rgba(255, 255, 0, 0.1),
            0 0 3px rgba(255, 255, 0, 0.15);
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .hero-section {
        padding: 1rem 0.5rem;
    }
    
    .hero-section::before {
        font-size: 0.7rem;
        top: 5px;
    }
    
    .main-name {
        font-size: 4rem;
        text-shadow: 
            0 0 0 1px #ffffff,
            0 0 0 2px #ffffff;
        letter-spacing: 0.05em;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .bio-text {
        max-width: 95%;
        padding: 0 0.5rem;
    }
    
    .bio-text p,
    .bio-text li {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .bio-text ul {
        padding-left: 1rem;
    }
    
    .linkedin-link {
        font-size: 0.8rem;
    }
    
    /* Smaller spotlight for very small screens */
    .cursor-spotlight {
        box-shadow: 
            0 0 0 1px rgba(255, 255, 0, 0.15),
            0 0 15px rgba(255, 255, 0, 0.25),
            0 0 30px rgba(255, 255, 0, 0.15);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Hide instruction text on touch devices */
    .hero-section::before {
        display: none;
    }
    
    /* Make text more touch-friendly */
    .linkedin-link {
        padding: 1rem 0;
        min-height: 44px; /* iOS touch target minimum */
    }
    
    /* Adjust spotlight for touch */
    .cursor-spotlight {
        transition: all 0.1s ease; /* Slightly slower for touch */
    }
}
