/* --- FONTS --- */
@font-face {
    font-family: 'OraimoBold';
    src: url('../assets/oraimo-Boldface_V3-Bold.ttf') format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: 'DINNext';
    src: url('../assets/din-next-lt-w23-regular.ttf') format('truetype');
    font-weight: normal; 
}

:root {
    --oraimo-green: #8fd400;
}
* { box-sizing: border-box; }

body {
    margin: 0; padding: 0;
    font-family: 'DINNext', sans-serif;
    background: #fff;
    direction: rtl;
    overflow-x: hidden;
}

.page-wrapper {
    width: 100%; max-width: 1200px; margin: 0 auto; position: relative;
}

/* =========================================
   VISUALS HEADER
   ========================================= */
.visuals-header {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.9; 
    min-height: 380px; 
    max-height: 500px;
    margin-bottom: 0;
}

/* --- BACKGROUND FRAME --- */
.poster-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../assets/stadium background.jpg') no-repeat center top;
    background-size: cover;
    
    /* SHADOW INCREASED: Deeper and Darker (0.9) */
    box-shadow: inset 0 100px 120px -30px rgba(0,0,0,0.9);

    overflow: hidden;
    z-index: 1;
}

/* --- LOGOS BAR --- */
.logos-bar {
    position: absolute;
    top: 0; left: 0; width: 100%; 
    padding: 10px 20px;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center; 
    direction: ltr; 
}

.logo-left {
    height: 28px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.logo-right {
    height: 85px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

/* BACKGROUND ELEMENTS */
.bg-element { position: absolute; z-index: 1; }

.ribbon {
    top: -40px; 
    left: -35%; 
    width: 150%; 
    transform: scaleX(-1) rotate(-20deg);
}

.cup {
    top: 20px; right: -30px;
    width: 200px;
    transform: rotate(10deg);
}

/* --- CARDS --- */
.cards-container {
    position: absolute;
    width: 100%;
    bottom: -80px; left: 0;
    z-index: 30; 
    display: flex;
    justify-content: center;
}

.cards-grouped {
    width: 100%; height: auto;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.4));
}


/* =========================================
   CONTENT SECTION
   ========================================= */
.content-section {
    position: relative;
    background: #fff;
    padding: 100px 20px 30px; 
    text-align: center;
    z-index: 5;
    border-radius: 30px 30px 0 0;
    margin-top: -20px; 
}

.campaign-title {
    font-family: 'DINNext', sans-serif;
    font-size: 1.6rem; 
    color: #000;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 900; 
}

.brand-word {
    font-family: 'OraimoBold', sans-serif;
    font-weight: bold; 
}

/* Form & Table Styles */
.info-table { width: 100%; border: 2px solid #000; margin-bottom: 30px; border-radius: 8px; overflow: hidden; }
.info-row { display: flex; flex-direction: column; border-bottom: 1px solid #000; }
.info-row:last-child { border-bottom: none; }

.info-header { 
    background: #000; color: #fff; padding: 10px; 
    font-weight: 900; font-family: 'DINNext', sans-serif;
}
.info-content { 
    background: var(--oraimo-green); color: #000; padding: 10px; 
    font-weight: 900; font-family: 'DINNext', sans-serif;
}

.entry-form { 
    background: #f4f4f4; padding: 20px; border-radius: 15px; margin: 0 auto; max-width: 600px; 
    font-weight: 900; 
}

.form-group { margin-bottom: 15px; text-align: right; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 900; }
.form-group input { 
    width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; 
    font-weight: 900; font-family: 'DINNext', sans-serif;
}

/* UPDATED TERMS LIST STYLE */
.terms-group { 
    font-weight: bold; 
    font-size: 0.85rem; 
    line-height: 1.6;
}
.terms-list {
    padding-right: 20px;
    margin-bottom: 15px;
    text-align: right;
}
.terms-list li {
    margin-bottom: 8px;
}

.submit-btn { 
    width: 100%; padding: 15px; background: #ccc; color: #fff; border: none; 
    font-family: 'OraimoBold', sans-serif; font-size: 1.2rem; border-radius: 8px; font-weight: bold;
}
.submit-btn.active { background: var(--oraimo-green); color: #000; cursor: pointer; }


/* =========================================
   DESKTOP OVERRIDES
   ========================================= */
@media (min-width: 992px) {
    .page-wrapper { padding: 40px 0; }
    .visuals-header { aspect-ratio: auto; height: 600px; width: 90%; margin: 0 auto; }
    .poster-background { border-radius: 40px; border: 5px solid #fff; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
    
    .logos-bar { padding: 30px 40px; }
    .logo-left { height: 50px; } 
    .logo-right { height: 120px; }

    .ribbon { width: 800px; top: -50px; left: -200px; }
    .cup { width: 350px; top: -20px; right: -60px; }

    .cards-container { bottom: -120px; }
    .cards-grouped { width: 750px; max-width: 100%; }

    .content-section { max-width: 900px; margin: -40px auto 0; padding-top: 140px; }
    
    .campaign-title { font-size: 2.5rem; }
    .info-row { flex-direction: row; }
    .info-header { width: 30%; display: flex; align-items: center; justify-content: center; }
    .info-content { width: 70%; text-align: right; }
}