/* Casa Pariurilor – Te Punem Pe Roate LP */

/* CSS Variables */
:root {
    --cp-red: #E30613;
    --cp-yellow: #FFD200;
    --cp-dark: #1a0a0a;
    --cp-text-white: #ffffff;
    --cp-glow: 0 8px 30px rgba(227, 6, 19, 0.4);
    --font-primary: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--cp-text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cp-dark) url('../images/Asset 10.webp?v=1.1') no-repeat top center;
    background-size: cover;
    z-index: -1;
    will-change: transform;
}

/* Wrapper */
.lp-wrapper {
    width: 100%;
    max-width: 600px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header styling */
.lp-header {
    width: 100%;
    background-color: var(--cp-red);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    overflow: hidden;
}

.lp-header-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.lp-hero {
    width: 100%;
    padding: 0 15px;
}

.lp-hero-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.lp-intro-section {
    text-align: center;
    padding: 20px 20px 0 20px;
}

.lp-intro-text {
    font-size: 19px;
    font-weight: 700;
    color: var(--cp-yellow);
    font-style: italic;
    line-height: 1.4;
}

.lp-intro-text strong {
    color: var(--cp-text-white);
}

.lp-download-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0 12px 0;
}

/* Single Download Button */
.lp-download-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
}

.lp-download-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--cp-yellow);
    color: var(--cp-dark);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    width: 90%;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.lp-download-action-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg) translateX(-200%);
    transition: none;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: rotate(30deg) translateX(-200%); }
    15% { transform: rotate(30deg) translateX(350%); }
    100% { transform: rotate(30deg) translateX(350%); }
}

.lp-download-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 210, 0, 0.5);
    background-color: #ffffff;
    color: var(--cp-dark);
}

.lp-download-action-btn:active {
    transform: translateY(-1px);
}

.lp-download-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Arrow Separator */
.lp-pulse-arrow {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    animation: bounce 2s infinite;
}

.lp-pulse-arrow svg {
    width: 32px;
    height: 32px;
    fill: var(--cp-yellow);
    filter: drop-shadow(0 0 5px rgba(255, 210, 0, 0.5));
}

/* Section Title */
.lp-section-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cp-text-white);
    margin-bottom: 25px;
}

/* Prizes Grid */
.lp-prizes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.lp-prize-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

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

.lp-prize-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cp-glow);
}

/* Main CTA Section */
.lp-cta-section {
    width: 100%;
    padding: 25px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cp-yellow);
    color: var(--cp-dark);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.lp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 210, 0, 0.5);
    background-color: #ffffff;
}

/* Steps Section */
.lp-steps-section {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    width: calc(100% - 30px);
    margin: 20px 15px;
}

.lp-steps-title {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: var(--cp-red);
    margin-bottom: 20px;
}

.lp-steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lp-step-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-step-number {
    width: 44px;
    height: 44px;
    background-color: var(--cp-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--cp-text-white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.lp-step-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* Extractions Section */
.lp-extractions-section {
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.lp-extraction-card {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.lp-extraction-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cp-glow);
}

/* Bottom Section */
.lp-bottom-section {
    text-align: center;
    padding: 30px 20px;
}

.lp-bottom-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--cp-yellow);
    font-style: italic;
    line-height: 1.5;
}

/* Footer Section */
.lp-footer {
    width: 100%;
    padding: 45px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(26, 10, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.lp-footer-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.lp-footer-logo img {
    max-width: 300px;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.lp-footer-logo img:hover {
    opacity: 1;
}

.lp-footer-legal img {
    max-width: 100%;
    width: 480px;
    height: auto;
}

.lp-footer-text {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    max-width: 90%;
    font-family: sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsiveness overrides */
@media (max-width: 600px) {
    .lp-intro-text {
        font-size: 17px;
    }
    .lp-download-action-btn {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 12px 24px;
    }
    .lp-prizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .lp-prize-card {
        width: 100%;
        max-width: 100%;
        display: block;
    }
    .lp-steps-title {
        font-size: 19px;
    }
    .lp-step-text {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .lp-wrapper {
        max-width: 1100px;
    }

    .lp-header {
        height: 80px;
        margin-bottom: 30px;
    }

    .lp-header-logo {
        height: 62px;
    }

    .lp-hero-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: center;
        width: 100%;
        padding: 30px 15px;
    }

    .lp-hero {
        padding: 0;
    }

    .lp-intro-section {
        text-align: left;
        padding: 0;
    }

    .lp-intro-text {
        font-size: 22px;
        line-height: 1.6;
    }

    .lp-download-title {
        font-size: 16px;
        margin: 25px 0 15px 0;
    }

    .lp-download-container {
        justify-content: flex-start;
    }

    .lp-prizes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .lp-cta-btn {
        font-size: 16px;
        padding: 16px 40px;
    }

    .lp-steps-section {
        padding: 40px;
        width: calc(100% - 30px);
        margin: 30px 15px;
    }

    .lp-steps-list {
        flex-direction: row;
        gap: 30px;
    }

    .lp-step-item {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .lp-step-text {
        padding-top: 5px;
        font-size: 16px;
    }

    .lp-extractions-section {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    .lp-extraction-card {
        flex: 1;
        max-width: 340px;
    }

    .lp-footer-container {
        max-width: 1100px;
    }
}

/* T&C Section */
.lp-tc-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 15px 30px 15px;
}

.lp-tc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--cp-dark);
    color: var(--cp-yellow);
    border: 2px solid var(--cp-yellow);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.lp-tc-icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.lp-tc-btn:hover {
    background-color: var(--cp-yellow);
    color: var(--cp-dark);
    border-color: var(--cp-yellow);
    box-shadow: 0 8px 25px rgba(255, 210, 0, 0.4);
    transform: translateY(-2px);
}

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

/* Video Section */
.lp-video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 15px 30px 15px;
}

.lp-video-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 210, 0, 0.3);
}

.lp-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
