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

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    color: #ccc;
    position: relative;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="20" cy="20" r="0.3" fill="%23ffffff" opacity="0.01"/><circle cx="80" cy="80" r="0.4" fill="%23ffffff" opacity="0.015"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'),
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

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

.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.nav-item {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    padding: 15px 25px;
    border-radius: 0;
    font-weight: 700;
    color: #ccc;
    cursor: pointer;
    border: 2px solid #444;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: relative;
    overflow: visible;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: width 0.5s ease;
    pointer-events: none;
    overflow: hidden;
}

.nav-item:hover::before {
    width: 100%;
}

.nav-item:hover {
    background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
    color: #fff;
    border-color: #666;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Dropdown styles */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown::after {
    content: '▼';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #666;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 2px solid #333;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.nav-item:hover .dropdown-menu,
.nav-item.has-dropdown.clicked .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    color: #aaa;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    border-bottom: 1px solid #222;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.3s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: rgba(51, 51, 51, 0.8);
    color: #fff;
    padding-left: 25px;
    border-left: 3px solid #555;
}

.dropdown-item:hover:first-child {
    border-top: 2px solid #555;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    color: #ccc;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    filter: contrast(1.2) brightness(0.9);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #666, transparent);
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    filter: contrast(1.2) brightness(0.9);
    transition: all 0.3s ease;
}

/* Main Content Area */
.main-content {
    display: flex;
    justify-content: center;
}

.content-oval {
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333;
    padding: 25px 40px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.content-oval::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="noise" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%23ffffff" opacity="0.01"/><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23noise)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

.cover-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.cover-photo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-placeholder {
    background: 
        linear-gradient(45deg, #1a1a1a, #2a2a2a),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grunge" width="50" height="50" patternUnits="userSpaceOnUse"><rect width="50" height="50" fill="%23ffffff" opacity="0.01"/><path d="M0 0 L50 50 M50 0 L0 50" stroke="%23ffffff" stroke-width="0.5" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grunge)"/></svg>');
    border: 2px solid #444;
    border-radius: 0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #888;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px
        );
    transform: rotate(45deg);
    animation: scan 8s linear infinite;
    will-change: transform;
}

@keyframes scan {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.photo-placeholder:hover {
    border-color: #666;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6);
    transform: scale(1.01);
}

.photo-note {
    background: rgba(51, 51, 51, 0.8);
    padding: 15px;
    border-radius: 0;
    font-size: 0.9rem;
    color: #aaa;
    position: relative;
    border-left: 4px solid #555;
    font-style: italic;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #666;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

.bio-section h2 {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}

.bio-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #aaa;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Email Signup */
.email-signup {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #333;
}

.email-signup h3 {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.email-signup p {
    color: #888;
    margin-bottom: 25px;
}

.signup-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.signup-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #444;
    border-radius: 0;
    font-size: 1rem;
    background: rgba(26, 26, 26, 0.9);
    color: #ccc;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
}

.signup-form input:focus {
    outline: none;
    border-color: #666;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 26, 1);
}

.signup-form input::placeholder {
    color: #666;
}

.signup-form button {
    background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
    color: #ccc;
    border: 2px solid #444;
    padding: 15px 30px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.signup-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.signup-form button:hover::before {
    left: 100%;
}

.signup-form button:hover {
    background: linear-gradient(45deg, #3a3a3a, #4a4a4a);
    color: #fff;
    border-color: #666;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 20px 15px;
    }
    
    .content-oval {
        padding: 50px 30px;
        max-width: 90%;
    }
    
    .cover-section {
        gap: 35px;
    }
    
    .logo {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px 10px;
    }
    
    .header {
        margin-bottom: 30px;
    }
    
    .logo {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .logo::after {
        width: 100px;
    }
    
    .logo-image {
        max-height: 90px;
    }
    
    .navigation {
        gap: 0;
        margin-bottom: 25px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .nav-item {
        padding: 15px 25px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
        margin-bottom: 0;
        position: relative;
    }
    
    .nav-item:not(:last-child) {
        margin-bottom: 0;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        margin-top: 0;
        border: 1px solid #333;
        clip-path: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease, max-height 0.3s ease;
        width: 100%;
        min-width: auto;
        background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        border-radius: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
        margin-left: 0;
        margin-right: 0;
        position: relative;
        z-index: 5;
    }
    
    .nav-item.has-dropdown.mobile-open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 10px;
        max-height: 300px;
        border: 2px solid #333;
        border-top: none;
        box-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.9),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    
    .nav-item:hover .dropdown-menu {
        transform: none;
    }
    
    /* Mobile dropdown arrow rotation */
    .nav-item.has-dropdown.mobile-open::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Mobile dropdown touch improvements */
    .nav-item.has-dropdown {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }
    
    .nav-item.has-dropdown:active {
        background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
        transform: scale(0.98);
    }
    
    /* Add mobile tap hint */
    .nav-item.has-dropdown::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-item.has-dropdown:active::before {
        opacity: 1;
    }
    
    .dropdown-item {
        padding: 15px 20px;
        font-size: 0.9rem;
        text-align: center;
        border-bottom: 1px solid #222;
        background: transparent;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:active {
        background: rgba(51, 51, 51, 0.9);
        transform: scale(0.98);
        color: #fff;
    }
    
    .dropdown-item::before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        transition: left 0.3s ease;
        pointer-events: none;
    }
    
    .dropdown-item:active::before {
        left: 100%;
    }
    
    .main-content {
        padding: 0 10px;
    }
    
    .content-oval {
        padding: 35px 20px;
        clip-path: polygon(0 2%, 100% 0%, 100% 98%, 0% 100%);
        margin: 0 auto;
    }
    
    .cover-section {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .photo-placeholder {
        height: 180px;
        font-size: 0.9rem;
    }
    
    .photo-note {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .bio-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .bio-section p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .email-signup {
        padding-top: 25px;
    }
    
    .email-signup h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .email-signup p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .signup-form {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        max-width: 100%;
    }
    
    .signup-form input {
        min-width: 100%;
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .signup-form button {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px 8px;
    }
    
    .header {
        margin-bottom: 25px;
    }
    
    .logo {
        font-size: 1.8rem;
        margin-bottom: 12px;
        letter-spacing: 3px;
    }
    
    .logo::after {
        width: 80px;
        height: 1px;
    }
    
    .navigation {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .nav-item {
        padding: 12px 20px;
        font-size: 0.8rem;
        max-width: 250px;
        letter-spacing: 1.5px;
    }
    
    .content-oval {
        padding: 25px 15px;
        clip-path: polygon(0 1%, 100% 0%, 100% 99%, 0% 100%);
    }
    
    .cover-section {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .photo-placeholder {
        height: 150px;
        font-size: 0.8rem;
    }
    
    .photo-note {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .bio-section h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }
    
    .bio-section p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .email-signup {
        padding-top: 20px;
    }
    
    .email-signup h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .email-signup p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .signup-form {
        gap: 10px;
    }
    
    .signup-form input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .signup-form button {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 180px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 8px 5px;
    }
    
    .logo {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .logo::after {
        width: 70px;
    }
    
    .nav-item {
        padding: 10px 16px;
        font-size: 0.75rem;
        max-width: 220px;
        letter-spacing: 1px;
    }
    
    .content-oval {
        padding: 20px 12px;
    }
    
    .photo-placeholder {
        height: 130px;
        font-size: 0.75rem;
    }
    
    .bio-section h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .bio-section p {
        font-size: 0.85rem;
    }
    
    .signup-form input,
    .signup-form button {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-item,
    .dropdown-item,
    .signup-form button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better mobile scrolling */
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Optimize mobile animations */
    .nav-item,
    .dropdown-item,
    .signup-form button {
        transition: all 0.2s ease;
    }
    
    /* Mobile-friendly focus states */
    .signup-form input:focus {
        transform: scale(1.02);
        border-color: #777;
    }
    
    /* Mobile navigation improvements */
    .navigation {
        position: relative;
        z-index: 100;
    }
    
    /* Mobile dropdown positioning */
    .dropdown-menu {
        position: relative;
        left: auto;
        right: auto;
        width: 100%;
        box-sizing: border-box;
        z-index: 10;
        margin: 0;
        padding: 0;
    }
    
    /* Ensure dropdowns don't overlap navigation */
    .nav-item.has-dropdown {
        z-index: 20;
    }
    
    .nav-item.has-dropdown.mobile-open {
        z-index: 30;
        background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
        border-color: #666;
        box-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.9),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    /* Mobile dropdown container styling */
    .nav-item.has-dropdown {
        border-bottom: none;
    }
    
    .nav-item.has-dropdown.mobile-open {
        border-bottom: 2px solid #333;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .header {
        margin-bottom: 20px;
    }
    
    .logo {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .logo-image {
        max-height: 75px;
    }
    
    .navigation {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-item {
        max-width: 150px;
        padding: 10px 15px;
    }
    
    .content-oval {
        padding: 25px 20px;
    }
    
    .cover-section {
        gap: 20px;
    }
}

/* High DPI mobile devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-item,
    .dropdown-item,
    .signup-form button {
        border-width: 1px;
    }
    
    .content-oval {
        border-width: 1px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .container {
        padding: 5px 3px;
    }
    
    .logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .logo::after {
        width: 60px;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 0.7rem;
        max-width: 200px;
        letter-spacing: 0.5px;
    }
    
    .content-oval {
        padding: 15px 8px;
    }
    
    .photo-placeholder {
        height: 110px;
        font-size: 0.7rem;
    }
    
    .bio-section h2 {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .bio-section p {
        font-size: 0.8rem;
    }
    
    .signup-form input,
    .signup-form button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Ensure proper mobile form handling */
@media (max-width: 768px) {
    input[type="email"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0;
    }
    
    /* Prevent zoom on iOS */
    input[type="email"]:focus {
        font-size: 16px;
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    .nav-item::before,
    .dropdown-item::before,
    .signup-form button::before {
        will-change: transform;
    }
    
    .photo-placeholder::before {
        animation-duration: 12s;
    }
}
