/* Live Preview Page Custom Styles */
:root {
    --primary-blue: #3b82f6;
    --dark-blue: #1e3a8a;
    --light-blue: #dbeafe;
    --accent-blue: #60a5fa;
    --envato-black: #222222;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
}

.live-preview-page {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--envato-black);
    overflow-x: hidden;
}

/* Hero Section */
.lp-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: rotate(-15deg);
}

.lp-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lp-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.lp-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-btn-primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: var(--light-blue);
}

/* Showcase Section */
.lp-showcase {
    padding: 80px 0;
    background: #f8fafc;
}

.lp-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.lp-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.lp-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.lp-card:hover {
    transform: translateY(-10px);
}

.lp-card img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-card-content {
    padding: 20px;
    text-align: center;
}

/* Features Section */
.lp-features {
    padding: 80px 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-item h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Login Credentials */
.lp-logins {
    background: #eff6ff;
    padding: 80px 0;
}

.login-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.login-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-bottom-left-radius: 100%;
    opacity: 0.5;
}

.login-box h4 {
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.cred-row {
    margin-bottom: 15px;
    text-align: left;
}

.cred-label {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
    margin-bottom: 5px;
}

.cred-value {
    background: #f1f5f9;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1rem;
    display: block;
    word-break: break-all;
}

.login-link {
    display: block;
    margin-top: 25px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

/* Pricing Section */
.lp-pricing {
    padding: 100px 0;
    text-align: center;
}

.price-tag {
    font-size: 5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 20px 0;
}

.price-currency {
    font-size: 2rem;
    vertical-align: super;
}

.buy-now-wrapper {
    margin-top: 40px;
}

.btn-buy-now {
    background: var(--primary-blue);
    color: white;
    font-size: 1.5rem;
    padding: 20px 60px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.btn-buy-now:hover {
    background: var(--dark-blue);
    color: white;
    transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lp-hero h1 { font-size: 2.2rem; }
    .price-tag { font-size: 3.5rem; }
}
