* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.top-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.98);
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.instagram-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 8px 12px;
    cursor: pointer;
    color: #000;
    text-transform: uppercase;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 52px;
    background: white;
    border-radius: 8px;
    min-width: 140px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 200;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #000;
    padding: 14px 18px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

/* Ko-fi Container - Much more reliable */
.kofi-container {
    text-align: center;
    padding: 12px 20px 8px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.kofi-container .kofiwidget-button {
    font-size: 0.98rem !important;
    padding: 9px 20px !important;
    border-radius: 6px !important;
}

/* Main Content */
.main-content {
    padding: 40px 20px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 180px); /* Accounts for header + kofi */
}

.main-title {
    font-size: 3.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

/* Mobile / Instagram Browser Fixes */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.85rem;
    }
    
    .top-header {
        height: 60px;
        padding: 0 15px;
    }
    
    .kofi-container {
        padding: 10px 15px 6px;
    }
}

/* Extra safety for Instagram in-app browser */
@media (max-device-width: 480px) {
    body {
        -webkit-text-size-adjust: 100%;
    }
}
