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

body {
    background-color: #FFF8EB;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.left-deco {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 70vh;
    background-image: url('img/left_deco.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: 1;
}

.right-deco {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 70vh;
    background-image: url('img/right_deco.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 1;
}

.top-deco {
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150px;
    background-image: url('img/top_deco.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 30px;
}

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

.main-text {
    color: #C8994B;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    text-transform: capitalize;
    line-height: 1.2;
}

.video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 6px;
    background: linear-gradient(135deg, #79FC82, #FCDE31);
    border-radius: 30px;
    position: relative;
}

.video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    background-color: #000;
}

.video-overlay {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: linear-gradient(135deg, rgba(121, 252, 130, 0.95), rgba(252, 222, 49, 0.95));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.play-button-large {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-overlay:hover .play-button-large {
    transform: scale(1.1);
}

.play-button-large svg {
    width: 50px;
    height: 50px;
    color: #3FBBAD;
    margin-left: 5px;
}

.overlay-text {
    color: #FFFCF6;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.video-play-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-play-control.visible {
    opacity: 1;
    pointer-events: auto;
}

.play-pause-control-btn {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.play-pause-control-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.play-pause-control-btn:active {
    transform: scale(0.95);
}

.play-pause-control-btn svg {
    width: 40px;
    height: 40px;
    color: #3FBBAD;
}

.play-pause-control-btn .play-control-icon {
    margin-left: 3px;
}

.cta-button {
    background-color: #3FBBAD;
    color: #FFFCF6;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63, 187, 173, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .left-deco,
    .right-deco {
        display: none;
    }
    
    .top-deco {
        display: block;
    }
    
    .container {
        padding-top: 150px;
    }
    
    .main-text {
        font-size: 1.8rem;
    }
    
    .play-button-large {
        width: 80px;
        height: 80px;
    }
    
    .play-button-large svg {
        width: 40px;
        height: 40px;
    }
    
    .overlay-text {
        font-size: 1.2rem;
    }
    
    .play-pause-control-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-pause-control-btn svg {
        width: 30px;
        height: 30px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 0.95rem;
    }
}

