body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    padding: 20px;
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: -1;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    background-image: linear-gradient(to top, #86377b 20%, #27273c 80%);
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}

.bgBottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
}

.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move-wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waveMiddle {
    background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

.container {
    background-color: #e6e6fa;
    border-radius: 8px;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.header-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo-container {
    height: 100px;
    width: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 450px;
    height: 100px;
    object-fit: contain;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #6c63ff;
    position: relative;
}

.contact-item:first-child i {
    position: relative;
    margin-left: -110px;
}

.speaker-details {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.speaker-image-container {
    width: 200px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.speaker-image {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 25%;
    left: 25%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border-radius: 8px;
}

.text-content {
    flex-grow: 1;
}

.header {
    font-size: 24px;
    font-weight: bold;
    color: #4a4a4a;
    margin-bottom: 5px;
}

.sub-header {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.speaker-info {
    font-size: 16px;
    color: #6c757d;
    margin-top: 5px;
}

.details {
    margin: 20px 0;
    font-size: 16px;
    color: #4a4a4a;
}

.countdown {
    font-size: 24px;
    font-weight: bold;
    color: #6c63ff;
    margin: 20px 0;
    text-align: center;
}

#meetingLink {
    display: none;
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

.footer {
    font-size: 14px;
    color: #6c757d;
    margin-top: 30px;
    text-align: center;
}
/* Mobile-specific styles */
@media only screen and (max-width: 768px) {
    body {
        padding: 10px;
        background-color: #fff;
    }

    .container {
        max-width: 100%;
        padding: 15px;
        border-radius: 0;
        box-shadow: none;
        position: relative;
    }

    .header-contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .logo-container {
        height: 60px;
        flex: 1;
    }

    .logo {
        height: 60px;
        max-width: 100%;
    }

    .contact-info {
        font-size: 12px; 
        text-align: right;
        position: absolute;
        top: 4px; 
        right: 5px;
        line-height: 0.5; 
        color: #6c63ff; 
    }
    .contact-item:first-child i {
        position: relative;
        margin-right: 30px;
    }
    

    .speaker-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .speaker-image-container {
        width: 150px;
        height: 200px;
    }

    .speaker-image {
        top: 50%;
        left: 50%;
    }

    .text-content {
        margin-top: 10px;
    }

    .header {
        font-size: 20px;
    }

    .sub-header {
        font-size: 16px;
    }

    .details, .countdown {
        font-size: 14px;
        margin: 10px 0;
    }

    #meetingLink {
        font-size: 16px;
        margin-top: 15px;
    }

    .footer {
        font-size: 12px;
    }
}


					