:root {
    --bg-black: #000000;
    --bg-dark: #1b1b1b;
    --bg-darker: #131313;
    --primary-red: #b40202;
    /* Blood Red */
    --text-white: #ffffff;
    --text-gray: #999999;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* HEADER STYLE - PORNHUB CLONE */
.site-header {
    background-color: var(--bg-black);
    border-bottom: 2px solid var(--primary-red);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: relative;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: var(--text-white);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    color: white;
    letter-spacing: -1px;
}

.logo .hub-box {
    background: var(--primary-red);
    color: white;
    /* Changed to white for better contrast on red */
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 2px;
}

.header-center {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
    position: relative;
}

.search-form {
    display: flex;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    background: #333;
    border: 1px solid #333;
    color: white;
    font-size: 14px;
    border-radius: 2px 0 0 2px;
}

.search-btn {
    background: #333;
    border: 1px solid #333;
    border-left: none;
    padding: 0 15px;
    color: var(--text-white);
    cursor: pointer;
    border-radius: 0 2px 2px 0;
}

.search-btn:hover {
    background: #444;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cta {
    background: var(--primary-red);
    color: white;
    /* White text on red bg */
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

.icon-link {
    color: var(--text-white);
    font-size: 20px;
    text-decoration: none;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* HERO SECTION */
.hero-wrapper {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-black), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* SUB HEADER */
.sub-header {
    background: var(--bg-dark);
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 13px;
    border-bottom: 1px solid #333;
}

.sub-header a {
    color: var(--text-white);
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.sub-header a:hover {
    color: var(--primary-red);
}