/* ===== GLASSPIRACY PAGE STYLES ===== */

/* ===== SECTION 1: First Glasspiracy (Header Banner) ===== */
        
.text_first_glasspiracy {
    background: #d60000;
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.5vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 20px;
    text-align: center;
}

.text_first_glasspiracy-inner {
    display: inline-block;
    animation: parpadeo 2s infinite;
}

@keyframes parpadeo {
    0%   { opacity: 1; }
    100%  { opacity: 0.4; }
    50% { opacity: 1; }
}
.first-block-hero {
    background: #eaaa00;
    padding: 40px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.first-block-logo {
    display: block;
    width: auto;
    max-width: 160px;
    height: auto;
}

.first-block-main-text {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 15vw;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    transform: rotate(-2deg);
}

.first-block-main-image {
    width: 30%;
    height: auto;
    transform: rotate(-4deg);
}
@media (max-width: 640px) {
    .first-block-logo {
        max-width: 90px;
    }
    .first-block-main-text {
        font-size: 55px;
    }
    .first-block-main-image {
        max-width: 200px;
    }
}

/* ===== SECTION 2: Second Glasspiracy (Video Background) ===== */
.second-block-hero {
    position: relative;
    background: #000;
    color: #fff;
    padding: 80px 20px 100px;
    overflow: hidden;
}

.second-block-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.second-block-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    opacity: 0.25;
    pointer-events: none;
}

.second-block-inner {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
}

.second-block-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: #eaaa00;
    clip-path: polygon(0 0, 100% 0, 70% 5%, 0 30%);
    z-index: 2;
    pointer-events: none;
}


.second-block-text {
    position: relative;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
} 
.second-block-badge {
    display: block;
    color: #000000;
    background-color: #fff;
    padding: 10px 50px;                
    border-radius: 40px;               
    position: relative;
    font-family: 'Zing Rust Base';
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
    text-align: center;
    width: 92vw;
    max-width: 1100px;
    margin: 0 auto;
}

.second-block-badge p {
    font-size: 50px;
    margin: 0;
    padding: 0;
    display: inline;
}

.second-block-badge strong,
.second-block-badge b {
    color: #d4a017;
    font-style: italic;
}

.second-block-hero .cta-buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.second-block-hero a.cta-btn {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 44px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: underline;
    padding: 16px 32px;
    border: 3px solid #eaaa29;
    transition: all 0.3s ease;
    display: inline-block;
    font-style: normal;
    box-sizing: border-box;
    color: #d4a017;
}

.second-block-hero span.cta-btn.cta-btn-outline {
    background: transparent;
    color: #eaaa00;
    border: 3px solid #eaaa00;
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 44px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: underline;
    padding: 16px 32px;
    display: inline-block;
    font-style: italic;
}

.second-block-hero a.cta-btn.cta-btn-filled {
    background: #eaaa00;
    color: #000;
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 44px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: underline;
    padding: 16px 32px;
    display: inline-block;
    font-style: italic;
}

@media (max-width: 640px) {
    .second-block-hero a.cta-btn {
        font-size: 18px;
        padding: 14px 24px;
    }
    .second-block-hero .cta-buttons-row {
        gap: 16px;
    }
}

.gp-caution {
    width: 100vw;
    margin-top: 60px;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.gp-caution-img {
    width: 110%;
    max-width: none;
    display: block;
    transform: rotate(-4deg);
    margin-left: -5%;
}

.gp-caution-txt {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #c90000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 20px;
    transform: rotate(-4deg);
}

/* ===== SECTION 3: Third Glasspiracy (Video Carousel) ===== */
.third-carousel-section {
    width: 100%;
    background: #000;
    padding: 0;
}

.third-carousel-header {
    background: #000;
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: center;
}

.third-carousel-heading {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.third-carousel-desc {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 30px;
    color: #fff;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: bold;
}

.third-carousel-slide {
    flex: 0 0 calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.third-carousel-video {
    position: relative;
    width: 100%;
    aspect-ratio: 15 / 16;
    overflow: hidden;
    cursor: pointer;
    padding: 20px;
}

.third-carousel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .third-carousel-slide { flex: 0 0 80%; padding: 0 20px; }
    .third-carousel-video { max-width: 100%; }
}

/* Owl Carousel Dots - Sections 3, 4, 5 */
.third-carousel-slider .owl-dots,
.fourth-carousel-slider .owl-dots,
.fifth-carousel-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.third-carousel-slider .owl-dot span,
.fourth-carousel-slider .owl-dot span,
.fifth-carousel-slider .owl-dot span {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: none !important;
    display: block;
    transition: all 0.3s ease;
}

.third-carousel-slider .owl-dot.active span,
.fourth-carousel-slider .owl-dot.active span,
.fifth-carousel-slider .owl-dot.active span {
    background: #d4a017 !important;
    transform: scale(1.2);
}

/* ===== SECTION 4: Fourth Glasspiracy (Video Carousel) ===== */
.fourth-carousel-section {
    position: relative;
    width: 100%;
    background: #000;
    padding: 0;
    overflow: hidden;
}

.fourth-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 100%;
    background: #eaaa00;
    clip-path: polygon(100% 0%, 100% 50%, 0% 70%, 0 20%);
    z-index: 0;
    pointer-events: none;
}

.fourth-carousel-header {
    position: relative;
    z-index: 2;
    background: transparent;
    padding-top: 90px;
    padding-bottom: 20px;
    text-align: center;
}

.fourth-carousel-heading {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.fourth-carousel-desc {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 30px;
    color: #000;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: bold;
}

.fourth-carousel-slide {
    flex: 0 0 calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.fourth-carousel-video {
   position: relative;
    width: 100%;
    aspect-ratio: 15 / 16;
    overflow: hidden;
    cursor: pointer;
    padding: 20px;
}

.fourth-carousel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .fourth-carousel-slide { flex: 0 0 80%; padding: 0 20px; }
    .fourth-carousel-section::before {
        clip-path: polygon(100% 0%, 100% 50%, 0% 70%, 0 10%);
    }
}

/* ===== SECTION 5: Fifth Glasspiracy (Video Carousel) ===== */
.fifth-carousel-section {
    position: relative;
    width: 100%;
    background: #000;
    padding: 0;
    overflow: hidden;
}

.fifth-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 100%;
    background: #fff;
    clip-path: polygon(100% 0%, 100% 50%, 0% 70%, 0 20%);
    z-index: 0;
    pointer-events: none;
}

.fifth-carousel-header {
    position: relative;
    z-index: 2;
    background: transparent;
    padding-top: 90px;
    padding-bottom: 20px;
    text-align: center;
}

.fifth-carousel-heading {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.fifth-carousel-desc {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 30px;
    color: #000;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: bold;
}

.fifth-carousel-slide {
    flex: 0 0 calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.fifth-carousel-video {
   position: relative;
    width: 100%;
    aspect-ratio: 15 / 16;
    overflow: hidden;
    cursor: pointer;
    padding: 20px;
}

.fifth-carousel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .fifth-carousel-slide { flex: 0 0 80%; padding: 0 20px; }
    .fifth-carousel-video { max-width: 100%; }
    .fifth-carousel-heading { font-size: 32px; }
    .fifth-carousel-desc { font-size: 16px; }
    .fifth-carousel-section::before {
        clip-path: polygon(100% 0%, 100% 50%, 0% 70%, 0 10%);
    }
}

/* ===== SECTION 6: Sixth Glasspiracy (Statistics) ===== */
.statistics-section {
    width: 100%;
    background: #000;
    padding: 60px 20px;
    position: relative;
}

.statistics-inner {
    width: 75%;
    margin: 0 auto;
    position: relative;
}

.statistics-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-7deg);
    width: 100%;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.statistics-title {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.statistics-box {
    border: 2px solid #606060;
    padding: 35px;
    border-radius: 10px;
}

.statistics-box-title {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #eaaa29;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.statistics-box-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.statistics-note {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 50px 0 30px;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.statistics-highlight {
    background: #eaaa29;
    padding: 10px 20px;
    border-radius: 12px;
    max-width: 85%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.statistics-highlight-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .statistics-grid { grid-template-columns: 1fr; }
    .statistics-highlight { padding: 10px; }
}

/* ===== SECTION 7: Seventh Glasspiracy (Newsletter) ===== */
.newsletter-section {
    width: 100%;
    background: #000;
    padding: 80px 0px 0px 0px;
    text-align: center;
    overflow: hidden;
}

.newsletter-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-title {
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 165px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    transform: rotate(-4deg);
    padding-bottom: 50px;
    text-align: left;
    font-weight: bold;
}

.newsletter-desc {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.newsletter-desc a {
    color: #fff;
    text-decoration: underline;
}

.newsletter-desc strong {
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 60px;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    font-family: 'Zing Rust Base', 'Roboto', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    background: #f5f5f0;
    border: none;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 18px 30px;
    font-family: 'Zing Rust Base', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #000;
    background: #eaaa00;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;
}

 .newsletter-section #hsForm_3dad7ffb-4d84-42c4-a60c-2549cab17f85 .hs-form-field label:not(.hs-error-msg),
 .newsletter-section #hsForm_3dad7ffb-4d84-42c4-a60c-2549cab17f85 .hs-form-field > label {
    color: #eaaa00 !important;
    font-weight: bold;
    font-size: 30px !important ;
    
 }

 .newsletter-section #hsForm_3dad7ffb-4d84-42c4-a60c-2549cab17f85 input.hs-button,
 .newsletter-section #hsForm_3dad7ffb-4d84-42c4-a60c-2549cab17f85 input.hs-button.primary,
 .newsletter-section #hsForm_3dad7ffb-4d84-42c4-a60c-2549cab17f85 input.hs-button.primary.large,
 .newsletter-section #hsForm_3dad7ffb-4d84-42c4-a60c-2549cab17f85 .hs_submit .actions input[type="submit"] {
     background: #eaaa00 !important;
     color: #000;
     width: 100% !important;
     display: block;
     box-sizing: border-box;
     border-radius: 9999px;
 }

 .newsletter-section #hsForm_3dad7ffb-4d84-42c4-a60c-2549cab17f85,
 .newsletter-section #hsForm_3dad7ffb-4d84-42c4-a60c-2549cab17f85 form {
     border: 2px solid #eaaa00 !important;
     padding: 10px 20px !important;
    border-radius: 12px !important;
    margin-bottom: 60px !important;
    font-size: 25px !important ;
    padding-bottom: 30px !important ;
    font-weight: bold;
 }

.newsletter-logo {
    width: 100%;
    background: #e0e0e0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-logo img {
    max-height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .newsletter-form { flex-direction: column; }
    .newsletter-input { text-align: center; }
}

/* ===== EVIDENCE VIDEO MODAL ===== */
.evidence-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.evidence-modal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.evidence-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000000;
}

.evidence-modal-close svg {
    width: 80px;
    height: 80px;
    fill: none;
    stroke: #eaaa00;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.evidence-modal-video {
    max-width: 85vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    /* Section 1 */
    .text_first_glasspiracy {
        font-size: 7px;
        padding: 8px 15px;
    }
    .first-block-hero {
        padding: 20px 15px 0px;
        gap: 16px;
    }
    .first-block-logo {
        max-width: 60px;
    }
    .first-block-main-image {
        max-width: 150px;
    }
    
    /* Section 2 */
    .second-block-hero {
        padding: 40px 15px 60px;
    }
    .second-block-badge {
        font-size: 24px;
    }

    .second-block-badge-text {
        padding: 20px 30px;
    }
    .second-block-badge{
        background-color: #fff;
        padding: 10px 10px;
    }
    .second-block-badge p {
        font-size: 18px;
    }
    .second-block-hero a.cta-btn {
        font-size: 18px;
        padding: 12px 20px;
    }
    .second-block-hero span.cta-btn.cta-btn-outline {
        font-size: 18px;
        padding: 12px 20px;
    }
    .second-block-hero a.cta-btn.cta-btn-filled {
        font-size: 18px;
        padding: 12px 20px;
    }
    .gp-caution-txt {
        font-size: 14px;
    }
    
    /* Section 3, 4, 5 Video Carousels */
    .third-carousel-header, .fourth-carousel-header, .fifth-carousel-header {
        padding-top: 30px;
    }
    .third-carousel-heading, .fourth-carousel-heading, .fifth-carousel-heading {
        font-size: 40px;
        font-weight: bold;
    }
    .third-carousel-desc, .fourth-carousel-desc, .fifth-carousel-desc {
        font-size: 16px;
        padding: 0 15px;
        font-weight: bold;
    }
    .third-carousel-slide, .fourth-carousel-slide, .fifth-carousel-slide {
        flex: 0 0 60%;
        padding: 0 10px;
    }
    .third-carousel-video, .fourth-carousel-video, .fifth-carousel-video {
        padding: 10px;
    }
    
    /* Section 6 */
    .statistics-section {
        padding: 40px 15px;
    }
    .statistics-title {
        font-size: 40px;
        margin-bottom: 30px;
        font-weight: bold;
    }
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .statistics-box {
        padding: 20px;
    }
    .statistics-box-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .statistics-box-text {
        font-size: 16px;
    }
    .statistics-note {
        font-size: 40px;
        margin: 30px 0 20px;
        font-weight: bold;
    }
    .statistics-highlight-text {
        font-size: 15px;
    }
    
    /* Section 7 */
    .newsletter-section {
        padding: 40px 0px 0px 0px;
    }
    .newsletter-inner {
        padding: 0 15px;
    }
    .newsletter-title {
        font-size: 48px;
        padding-bottom: 30px;
        text-align: center;
        font-weight: bold;
    }
    .newsletter-desc {
        font-size: 16px;
        margin: 0 auto 30px;
    }
    .newsletter-form {
        flex-direction: column;
        margin: 0 auto 40px;
    }
    .newsletter-input {
        text-align: center;
        padding: 15px 20px;
        font-size: 16px;
    }
    .newsletter-btn {
        padding: 15px 25px;
        font-size: 18px;
    }
    .newsletter-logo {
        padding: 15px;
    }
    .newsletter-logo img {
        max-height: 30px;
    }
    
    /* Evidence Video Modal - Mobile */
    .evidence-modal-inner {
        flex-direction: column;
        padding: 20px;
    }
    .evidence-modal-close {
        position: absolute;
        top: 10px;
        left: 10px;
    }
    .evidence-modal-close svg {
        width: 40px;
        height: 40px;
    }
    .evidence-modal-video {
        max-width: 95vw;
        max-height: 80vh;
    }
}
