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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --dark-bg: #1a1a2e;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: white;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(223, 5, 142, 0.5) 0%, transparent 30%),
        radial-gradient(ellipse at 20% 60%, rgba(223, 5, 142, 0.4) 0%, transparent 35%),
        radial-gradient(ellipse at 70% 80%, rgba(223, 5, 142, 0.35) 0%, transparent 30%),
        radial-gradient(ellipse at 30% 90%, rgba(223, 5, 142, 0.3) 0%, transparent 35%),
        rgba(13, 7, 210);
    min-height: 100vh;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.08) 0%, transparent 70%);
    z-index: 0;
}

/* Disable image downloads and right-click */
img {
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Hero Logo - Explicit Display */
img.hero-logo {
    display: block !important;
    pointer-events: auto !important;
    max-width: calc(100vw - 0.5in) !important;
    width: calc(100vw - 0.5in) !important;
    height: auto !important;
    margin: -80px auto 0 auto !important;
    position: relative !important;
    z-index: 10 !important;
    border-radius: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
}

.logo-text {
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #fff 30%, #b0b0b0 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 12px #fff,
        0 0 24px #b0b0ff,
        2px 2px 6px #222,
        0 4px 16px #0008;
    letter-spacing: 2px;
    padding: 0.5em 0 0.2em 0;
    display: block;
    text-align: center;
}

.logo-tag {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 8px #b0b0ff, 0 2px 8px #0008;
    margin-top: 0.2em;
}

/* Re-enable pointer events for clickable images */
.gallery-item img,
.collage-item img {
    pointer-events: auto;
}

/* Free Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: transparent;
    backdrop-filter: none;
    margin: 2rem 0;
    border-radius: 10px;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.collage-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.collage-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

/* Fullscreen overlay for gallery */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fullscreen-overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    pointer-events: auto;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    pointer-events: auto;
}

.fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: transparent;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Section */
.hero {
    background: transparent;
    color: white;
    padding: 2rem 0 1rem 0;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 1rem;
    left: calc(0.5in / 2);
    right: calc(0.5in / 2);
    height: 200px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(100, 150, 255, 0.6) 0%, transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(200, 80, 255, 0.5) 0%, transparent 28%),
        radial-gradient(circle at 40% 10%, rgba(100, 200, 255, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(150, 100, 255, 0.45) 0%, transparent 26%),
        radial-gradient(circle at 10% 80%, rgba(200, 150, 255, 0.35) 0%, transparent 32%);
    z-index: 0;
    pointer-events: none;
}

.hero-logo {
    max-width: calc(100vw - 0.5in) !important;
    width: calc(100vw - 0.5in) !important;
    height: auto !important;
    max-height: none !important;
    margin: -80px auto 0 auto !important;
    display: block !important;
    position: relative !important;
    z-index: 10 !important;
    border-radius: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
}

.hero-header {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.5rem auto;
    max-width: 900px;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    margin: -1rem 0 0 0;
    opacity: 0.9;
}

.hero-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: 0;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.hero-textbox {
    background: transparent;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: none;
    color: white;
    text-align: left;
}

.hero-textbox p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.hero-textbox p:last-child {
    margin-bottom: 0;
}

.additional-image-container {
    margin: 2rem 0;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.recession-textbox {
    flex: 1;
    color: white;
    text-align: left;
    padding: 1rem 0;
}

.recession-textbox p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.recession-textbox p:last-child {
    margin-bottom: 0;
}

.additional-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: transparent;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Members Section with Paywall */
.members-section {
    padding: 5rem 0;
    background: transparent;
}

.members-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.paywall {
    background: transparent;
    border-radius: 16px;
    box-shadow: none;
    padding: 3rem;
    border: none;
}

.paywall-content {
    text-align: center;
}

.lock-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.paywall-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.paywall-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.members-benefits {
    list-style: disc;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding-left: 2rem;
    color: white;
    font-size: 1.125rem;
    line-height: 2;
}

.members-benefits li {
    margin-bottom: 0.75rem;
}

/* Payment Section with Image */
.payment-with-image {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.payment-content {
    flex: 0 1 500px;
}

.payment-image {
    flex: 0 1 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 500px !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-lg) !important;
    display: block !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
    color: white;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.savings {
    color: #10b981;
    background: transparent;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    color: white;
}

.pricing-card.featured .plan-features li {
    color: white;
}

.btn-plan {
    width: 100%;
    background: var(--primary-color);
    color: white;
}

.btn-plan:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.payment-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-buttons .btn-plan {
    flex: 1;
}

.btn-featured {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.btn-featured:hover {
    background: rgba(255, 255, 255, 1);
}

.payment-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Locked Content Preview */
.locked-content-preview {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.locked-content-preview h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.preview-items {
    display: grid;
    gap: 1rem;
}

.preview-item {
    background: rgba(248, 250, 252, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.preview-item.blurred {
    filter: blur(3px);
    user-select: none;
    pointer-events: none;
}

.preview-item h5 {
    margin-bottom: 0.5rem;
    color: white;
}

.preview-item p {
    color: var(--text-light);
}

/* Free Preview Section */
.free-preview {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
}

/* Free Gallery Section */
.free-gallery {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Account Creation Form */
.account-creation {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.email-verification {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.account-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.account-form-container h3 {
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.account-form-container > p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Streaming Platform Styles */
.streaming-platform {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.platform-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
}

.btn-logout {
    background: var(--text-light);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-logout:hover {
    background: var(--text-dark);
}

.video-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
}

.category-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    font-size: 3rem;
    color: white;
    opacity: 0.9;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.video-info {
    padding: 1rem;
}

.video-info h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.125rem;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.video-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover {
    color: var(--primary-color);
}

.video-player-container {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    overflow: hidden;
    color: white;
}

.video-player-container video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    background: black;
}

.video-details {
    padding: 2rem;
}

.video-details h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.video-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.video-gallery {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.video-gallery h4 {
    color: white;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 0.5rem;
    color: white;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-header {
        font-size: 1.25rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .collage-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .paywall {
        padding: 2rem 1rem;
    }

    .payment-with-image {
        flex-direction: column;
        gap: 1.5rem;
    }

    .payment-content,
    .payment-image {
        min-width: 100%;
        max-width: 100%;
    }
}

.container,
.card,
.section,
.home-content,
.free-preview,
.free-gallery,
.content-box,
.story-section,
.pricing-section,
.gallery-section,
.collage-item {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
