/* Small mobile devices (phones in portrait) */
@media (max-width: 480px) {
    .content {
        bottom: 40px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
    
    .name {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .bio {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .links {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .link {
        font-size: 0.9rem;
    }
    
    .year {
        top: 20px;
        right: 15px;
        font-size: 0.8rem;
    }
}

/* Large mobile devices (phones in landscape, small tablets) */
@media (min-width: 481px) and (max-width: 768px) {
    .content {
        bottom: 50px;
        left: 25px;
        right: 25px;
        max-width: none;
    }
    
    .name {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }
    
    .bio {
        font-size: 1.05rem;
        margin-bottom: 22px;
    }
    
    .links {
        gap: 18px;
    }
    
    .year {
        top: 25px;
        right: 25px;
    }
}

/* Tablets in portrait */
@media (min-width: 769px) and (max-width: 1024px) {
    .content {
        bottom: 60px;
        left: 35px;
        max-width: 450px;
    }
    
    .name {
        font-size: 3rem;
    }
    
    .bio {
        font-size: 1.15rem;
        margin-bottom: 24px;
    }
    
    .year {
        top: 35px;
        right: 35px;
    }
}

/* Large screens and desktops */
@media (min-width: 1025px) {
    .content {
        bottom: 50px;
        left: 50px;
        max-width: 500px;
    }
    
    .name {
        font-size: 3.2rem;
    }
    
    .bio {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .year {
        top: 50px;
        right: 50px;
        font-size: 1rem;
    }
}

/* Very small screens (older phones) */
@media (max-width: 320px) {
    .content {
        bottom: 30px;
        left: 10px;
        right: 10px;
    }
    
    .name {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .bio {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .links {
        gap: 12px;
    }
    
    .link {
        font-size: 0.85rem;
    }
    
    .year {
        top: 15px;
        right: 10px;
        font-size: 0.75rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .content {
        bottom: 80px;
        left: 80px;
        max-width: 600px;
    }
    
    .name {
        font-size: 4rem;
    }
    
    .bio {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .year {
        top: 80px;
        right: 80px;
        font-size: 1.1rem;
    }
}