/*
Theme Name: Nanairo LP Clone
Description: A single page Landing Page (LP) theme inspired by nanairo.co design.
Author: Antigravity
Version: 1.0
*/

:root {
    --bg-color: #f5f5f5;
    --text-color: #333;
    --primary-color: #ff4a85; /* A vibrant pink commonly used for accents */
    --hover-color: #e0306c;
    --header-bg: #ffffff;
    --card-bg: #ffffff;
    --border-color: #eaeaea;
    --gray-text: #888;
}

/* Dark mode preferences or adult site typical dark theme */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

:root {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --primary-color: #ff4a85;
    --hover-color: #ff72a1;
    --header-bg: #1e1e1e;
    --card-bg: #242424;
    --border-color: #333;
    --gray-text: #aaaaaa;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Layout */
.lp-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.lp-header {
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.header-nav {
    display: flex;
    gap: 1.5rem;
}

.header-nav a {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

/* Sidebar */
.lp-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: var(--card-bg);
    transition: background-color 0.2s;
}

.sidebar-menu a:hover {
    background-color: #333;
    color: var(--primary-color);
}

/* Content Area */
.lp-content-area {
    width: 100%;
}

.page-title {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.page-description {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

/* Video Grid (List style) */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: var(--primary-color);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #333;
    position: relative;
    overflow: hidden;
    display: block;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-icon {
    opacity: 1;
}

.video-info {
    padding: 1rem;
}

.video-title {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-title a {
    color: #fff;
}

.video-title a:hover {
    color: var(--primary-color);
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray-text);
    font-size: 0.85rem;
}

/* CTA Section for LP */
.lp-cta-section {
    background: linear-gradient(45deg, #1e1e1e, #2a0814);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--primary-color);
}


.lp-cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lp-cta-section p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(255, 74, 133, 0.4);
}

.cta-button:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

/* Footer */
.lp-footer {
    background-color: var(--header-bg);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    color: var(--gray-text);
    margin-top: auto;
}

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

/* Single Article Styles */
.single-article-area {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.single-article-content h1, 
.single-article-content h2, 
.single-article-content h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-article-content h2 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.single-article-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-catchphrase {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--hover-color);
    background: rgba(255, 74, 133, 0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.review-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
}

.review-table th, 
.review-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.review-table th {
    background-color: #2a2a2a;
    color: #fff;
    width: 25%;
    font-weight: bold;
}

.review-table td {
    color: #ccc;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, #2c2c2c 0%, #3a3a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    font-weight: bold;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px dashed #555;
}

.affiliate-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 2rem auto;
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-main {
        grid-template-columns: 1fr;
    }
    .lp-sidebar {
        display: none; /* Hide sidebar on small screens for a cleaner LP flow, or make it a drawer */
    }
}
