/* PornHub Style Theme */
:root {
    --ph-black: #000000;
    --ph-dark: #1b1b1b;
    --ph-orange: #ff9000;
    --ph-orange-hover: #ffab3d;
    --ph-white: #ffffff;
    --ph-gray: #999999;
}

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    background-color: var(--ph-black);
    color: var(--ph-white);
    min-height: 100vh;
    min-height: 100dvh;
}

/* Hero section with background */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Background image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/bg.jpg');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark overlay for text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

/* Content container */
.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Profile section */
.profile {
    text-align: center;
    margin-bottom: 8px;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--ph-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 8px;
}

.profile-tagline {
    font-size: 1rem;
    color: var(--ph-orange);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Links container */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual link button */
.link-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    background: rgba(27, 27, 27, 0.9);
    border: 2px solid var(--ph-orange);
    border-radius: 12px;
    text-decoration: none;
    color: var(--ph-white);
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.link-btn:hover {
    background: rgba(255, 144, 0, 0.15);
    border-color: var(--ph-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 144, 0, 0.3);
}

.link-btn:active {
    transform: translateY(0);
}

/* Link icon */
.link-icon {
    font-size: 1.5rem;
    min-width: 32px;
    text-align: center;
}

/* Link text container */
.link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Link name */
.link-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--ph-white);
}

/* Link description */
.link-description {
    font-size: 0.8rem;
    color: var(--ph-gray);
    line-height: 1.3;
}

/* Loading state */
.loading {
    text-align: center;
    color: var(--ph-gray);
    padding: 20px;
}

/* Error state */
.error {
    text-align: center;
    color: #ff4444;
    padding: 20px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .hero {
        padding: 16px;
    }

    .content {
        max-width: 100%;
    }

    .profile-name {
        font-size: 2rem;
    }

    .link-btn {
        padding: 12px 14px;
    }

    .link-icon {
        font-size: 1.3rem;
        min-width: 28px;
    }

    .link-name {
        font-size: 1rem;
    }

    .link-description {
        font-size: 0.75rem;
    }
}

/* Large screens */
@media (min-width: 768px) {
    .profile-name {
        font-size: 3rem;
    }

    .profile-tagline {
        font-size: 1.1rem;
    }
}

/* Gallery page styles */
.gallery-placeholder {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.gallery-placeholder h1 {
    font-size: 2rem;
    color: var(--ph-orange);
}

.gallery-placeholder p {
    color: var(--ph-gray);
    font-size: 1.1rem;
}

.back-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--ph-orange);
    color: var(--ph-black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.back-link:hover {
    background: var(--ph-orange-hover);
    transform: translateY(-2px);
}