:root {
    --c-bg: #0C0C0D;
    --c-header: #373A3E;
    --c-btn-dark: #464749;
    --c-btn-gold: #FFCC00;
    --c-btn-gold-hover: #e6b800;
    --c-text: #e8e8e8;
    --c-text-muted: #a0a0a8;
    --c-border: #2a2b2e;
    --c-card: #16171a;
    --c-card-hover: #1e1f24;
    --c-accent: #FFCC00;
    --c-green: #27ae60;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --font-main: 'Open Sans', Arial, sans-serif;
    --font-head: 'Roboto', Arial, sans-serif;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
}

body {
    font-family: var(--font-main);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-btn-gold-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    line-height: 1.3;
    color: #fff;
    margin-bottom: 0.6em;
}

p {
    margin-bottom: 1em;
    color: var(--c-text);
}

.lp-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.lp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

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

.lp-btn--dark {
    background: var(--c-btn-dark);
    color: #fff;
    border: 1px solid #5a5c60;
}

.lp-btn--dark:hover {
    background: #525457;
    color: #fff;
}

.lp-btn--gold {
    background: var(--c-btn-gold);
    color: #0C0C0D;
    font-weight: 700;
}

.lp-btn--gold:hover {
    background: var(--c-btn-gold-hover);
    color: #0C0C0D;
}

.lp-btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.lp-btn--sm {
    padding: 7px 16px;
    font-size: 13px;
}

.lp-section {
    padding: 60px 0;
}

.lp-section__title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-section__title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--c-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.lp-section__sub {
    color: var(--c-text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.lp-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: background var(--transition), border-color var(--transition);
}

.lp-card:hover {
    background: var(--c-card-hover);
    border-color: #3a3b3f;
}

/* ========== HEADER ========== */
#lp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    border-bottom: 1px solid #2a2c30;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.lp-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 64px;
}

.lp-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lp-logo img {
    height: 42px;
    width: auto;
    border-radius: var(--radius-sm);
}

.lp-logo__text {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--c-btn-gold);
    letter-spacing: -0.5px;
    margin-left: 10px;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.lp-nav a {
    color: #c8cacc;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.lp-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
}

.lp-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lp-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    white-space: nowrap;
    margin-right: 4px;
}

.lp-online__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-green);
    box-shadow: 0 0 6px var(--c-green);
    animation: lpPulse 1.6s infinite;
}

@keyframes lpPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.lp-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
}

.lp-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ccc;
    border-radius: 2px;
    transition: all 0.3s;
}

.lp-burger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.lp-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.lp-burger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.lp-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: #2a2c30;
    padding: 16px 20px;
    border-top: 1px solid var(--c-border);
}

.lp-mobile-menu.is-open {
    display: flex;
}

.lp-mobile-menu a {
    color: #c8cacc;
    font-size: 15px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.lp-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lp-mobile-menu .lp-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

/* ==========  ========== */
#lp-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/hero.jpg') center/cover no-repeat;
    z-index: 0;
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 13, 0.92) 0%, rgba(12, 12, 13, 0.6) 60%, rgba(12, 12, 13, 0.2) 100%);
    z-index: 1;
}

.lp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 60px 0;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: var(--c-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lp-hero__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.lp-hero__title span {
    color: var(--c-accent);
}

.lp-hero__desc {
    color: #c8cacc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.lp-hero__bonus {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
    display: inline-block;
}

.lp-hero__bonus-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--c-accent);
    display: block;
}

.lp-hero__bonus-label {
    font-size: 13px;
    color: var(--c-text-muted);
}

.lp-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== INFO TABLE ========== */
.lp-info-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.lp-info-table th,
.lp-info-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
}

.lp-info-table th {
    background: #1e1f24;
    color: var(--c-text-muted);
    font-weight: 600;
    width: 40%;
    white-space: nowrap;
}

.lp-info-table td {
    background: var(--c-card);
    color: var(--c-text);
}

.lp-info-table tr:last-child th,
.lp-info-table tr:last-child td {
    border-bottom: none;
}

.lp-info-table tr:hover th,
.lp-info-table tr:hover td {
    background: var(--c-card-hover);
}

.lp-info-table__wrap {
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    overflow-x: auto;
}

/* ========== SCREENSHOTS ========== */
.lp-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lp-screenshot {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.lp-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lp-screenshot img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lp-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.lp-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition);
    border: none;
}

.lp-slider-dot.active {
    background: var(--c-accent);
}

/* ========== WINNERS ========== */
.lp-winners {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.lp-winner-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
}

.lp-winner-item:hover {
    background: var(--c-card-hover);
}

.lp-winner-item__rank {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    min-width: 22px;
}

.lp-winner-item__rank.gold {
    color: #ffd700;
}

.lp-winner-item__rank.silver {
    color: #c0c0c0;
}

.lp-winner-item__rank.bronze {
    color: #cd7f32;
}

.lp-winner-item__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #373A3E, #5a5c60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--c-accent);
    flex-shrink: 0;
}

.lp-winner-item__info {
    flex: 1;
    min-width: 0;
}

.lp-winner-item__nick {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-winner-item__amount {
    font-size: 12px;
    color: var(--c-green);
    font-weight: 700;
}

/* ========== APP BLOCK ========== */
.lp-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.lp-app-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
}

.lp-app-table {
    width: 100%;
    border-collapse: collapse;
}

.lp-app-table th,
.lp-app-table td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: 13px;
}

.lp-app-table th {
    background: #1e1f24;
    color: var(--c-text-muted);
    font-weight: 600;
}

.lp-app-table td {
    background: var(--c-card);
    color: var(--c-text);
}

.lp-app-table tr:last-child th,
.lp-app-table tr:last-child td {
    border-bottom: none;
}

.lp-app-dl {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-app-dl__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.lp-app-dl__desc {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.lp-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
    color: #fff;
}

.lp-dl-btn:hover {
    background: var(--c-card-hover);
    border-color: #3a3b3f;
    color: #fff;
    text-decoration: none;
}

.lp-dl-btn__icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.lp-dl-btn__text {
}

.lp-dl-btn__label {
    font-size: 11px;
    color: var(--c-text-muted);
}

.lp-dl-btn__name {
    font-size: 15px;
    font-weight: 700;
}

/* ========== SLOT MINI-GAME ========== */
.lp-slot {
    max-width: 500px;
    margin: 0 auto;
}

.lp-slot__reels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.lp-reel {
    width: 80px;
    height: 90px;
    background: #1e1f24;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    overflow: hidden;
    position: relative;
    transition: border-color var(--transition);
}

.lp-reel.spinning {
    border-color: var(--c-accent);
    animation: lpReelSpin 0.15s linear infinite;
}

@keyframes lpReelSpin {
    0% {
        background: #1e1f24;
    }
    50% {
        background: #252629;
    }
    100% {
        background: #1e1f24;
    }
}

.lp-slot__controls {
    text-align: center;
}

.lp-slot__spin {
    padding: 14px 48px;
    font-size: 17px;
    font-weight: 700;
    background: var(--c-btn-gold);
    color: #0C0C0D;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    font-family: var(--font-head);
}

.lp-slot__spin:hover:not(:disabled) {
    background: var(--c-btn-gold-hover);
    transform: scale(1.04);
}

.lp-slot__spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.lp-slot__result {
    margin-top: 18px;
    padding: 18px;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
    animation: lpFadeIn 0.4s ease;
}

@keyframes lpFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-slot__result.win {
    display: block;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.4);
}

.lp-slot__result.lose {
    display: block;
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.3);
}

.lp-slot__result-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.lp-slot__result.win .lp-slot__result-title {
    color: var(--c-green);
}

.lp-slot__result.lose .lp-slot__result-title {
    color: #e85555;
}

.lp-slot__result-text {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.lp-slot__balance {
    margin-top: 14px;
    font-size: 13px;
    color: var(--c-text-muted);
}

.lp-slot__balance span {
    color: var(--c-accent);
    font-weight: 700;
}

/* ========== FAQ ========== */
.lp-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.lp-faq-item.is-open {
    border-color: #3a3b3f;
}

.lp-faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-head);
    transition: background var(--transition);
}

.lp-faq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.lp-faq-q__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--c-btn-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--c-accent);
    transition: transform var(--transition);
}

.lp-faq-item.is-open .lp-faq-q__icon {
    transform: rotate(45deg);
}

.lp-faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding var(--transition);
}

.lp-faq-item.is-open .lp-faq-a {
    max-height: 400px;
}

.lp-faq-a__inner {
    padding: 0 20px 18px;
    color: var(--c-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
#lp-footer {
    background: var(--c-header);
    border-top: 1px solid #2a2c30;
    margin-top: 40px;
}

.lp-footer__main {
    padding: 40px 0 28px;
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 32px;
}

.lp-footer__brand {
}

.lp-footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.lp-footer__logo img {
    height: 38px;
    border-radius: var(--radius-sm);
}

.lp-footer__logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-accent);
    margin-left: 10px;
    font-family: var(--font-head);
}

.lp-footer__tagline {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.lp-footer__nav-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.lp-footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-footer__nav-list a {
    color: #b0b2b6;
    font-size: 14px;
    transition: color var(--transition);
}

.lp-footer__nav-list a:hover {
    color: #fff;
    text-decoration: none;
}

.lp-footer__divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 0;
}

.lp-footer__payments {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-footer__logos-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-footer__logos-label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    width: 100%;
    margin-bottom: 2px;
}

.lp-badge {
    background: #1e1f24;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #c8cacc;
    white-space: nowrap;
}

.lp-footer__bottom {
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
}

.lp-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer__copy {
    font-size: 12px;
    color: var(--c-text-muted);
}

.lp-footer__legal {
    font-size: 11px;
    color: #6a6c70;
    line-height: 1.6;
}

.lp-footer__legal a {
    color: #8a8c90;
}

/* ========== STICKY WIDGET ========== */
#lp-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #1a1b1e 0%, #22232a 100%);
    border-top: 2px solid var(--c-accent);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
}

.lp-widget__text {
    font-size: 14px;
    color: var(--c-text-muted);
}

.lp-widget__bonus {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-accent);
}

.lp-widget__close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}

.lp-widget__close:hover {
    color: #fff;
}

body.lp-widget-open {
    padding-bottom: 70px;
}

/* ========== CONTENT BLOCK ========== */
.lp-content-body {
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.7;
}

.lp-content-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.lp-content-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e8e8e8;
    margin: 22px 0 10px;
}

.lp-content-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: #d8d8d8;
    margin: 18px 0 8px;
}

.lp-content-body p {
    margin-bottom: 14px;
}

.lp-content-body ul, .lp-content-body ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.lp-content-body li {
    margin-bottom: 6px;
}

.lp-content-body a {
    color: var(--c-accent);
}

.lp-content-body strong {
    color: #fff;
    font-weight: 700;
}

.lp-content-body em {
    font-style: italic;
    color: #ccc;
}

.lp-content-body table {
    width: auto;
    max-width: 100%;
    margin: 16px auto;
    border-collapse: collapse;
    font-size: 14px;
}

.lp-content-body table th,
.lp-content-body table td {
    padding: 10px 16px;
    border: 1px solid var(--c-border);
    text-align: left;
}

.lp-content-body table th {
    background: #1e1f24;
    color: #fff;
    font-weight: 600;
}

.lp-content-body table td {
    background: var(--c-card);
}

.lp-content-body blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 16px;
    margin: 16px 0;
    background: var(--c-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
}

.lp-content-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0;
}

/* ========== AUTHOR BLOCK ========== */
.lp-author {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 32px;
}

.lp-author__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #464749, #666);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--c-accent);
    flex-shrink: 0;
}

.lp-author__name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.lp-author__role {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.lp-author__link {
    font-size: 13px;
    color: var(--c-accent);
    margin-top: 6px;
    display: inline-block;
}

/* ========== UTILITIES ========== */
.lp-highlight {
    color: var(--c-accent);
    font-weight: 700;
}

.lp-mt-0 {
    margin-top: 0;
}

.lp-mb-24 {
    margin-bottom: 24px;
}

.lp-text-center {
    text-align: center;
}

.lp-tag {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: var(--c-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wp-content-area {
    position: relative;
}

.wp-post-image {
    border-radius: var(--radius-md);
}

.entry-content {
}

.single-post {
}

.elementor-section {
}

.site-main {
}

/* ========== ANIMATIONS ========== */
.lp-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .lp-header__inner {
        grid-template-columns: auto auto;
    }

    .lp-nav {
        display: none;
    }

    .lp-online {
        display: none;
    }

    .lp-burger {
        display: flex;
    }

    .lp-header__right {
        gap: 8px;
    }

    .lp-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .lp-footer__brand {
        grid-column: span 2;
    }

    .lp-app-grid {
        grid-template-columns: 1fr;
    }

    .lp-screenshots {
        grid-template-columns: 1fr;
    }

    .lp-slider-dots {
        display: flex;
    }

    .lp-screenshot {
        display: none;
    }

    .lp-screenshot.active {
        display: block;
    }
}

@media (max-width: 600px) {
    .lp-section {
        padding: 40px 0;
    }

    .lp-hero__content {
        padding: 40px 0;
    }

    .lp-hero__cta {
        flex-direction: column;
    }

    .lp-hero__cta .lp-btn {
        width: 100%;
    }

    .lp-winners {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-footer__main {
        grid-template-columns: 1fr;
    }

    .lp-footer__brand {
        grid-column: auto;
    }

    #lp-widget {
        flex-direction: column;
        gap: 8px;
        padding: 12px 48px 12px 16px;
    }

    .lp-widget__close {
        top: 12px;
        transform: none;
    }

    .lp-reel {
        width: 64px;
        height: 76px;
        font-size: 30px;
    }
}

@media (max-width: 380px) {
    .lp-winners {
        grid-template-columns: 1fr;
    }
}

/* --- unused decorative --- */
.lp-shimmer-unused {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.lp-glow-unused {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.lp-divider-unused {
    width: 60px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
    margin: 0 auto 24px;
}
