/* Fonts */
@font-face {
    font-family: 'Lynea Sans';
    src: url('assets/fonts/LyneaSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Lynea Sans', sans-serif;
    /* Global font change */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Wrapper constraints */
.iframe-wrapper {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    /* Default Mobile */
    width: 375px;
    height: 721px;
}

/* Breakpoints */
@media (min-width: 768px) {
    .iframe-wrapper {
        width: 768px;
        height: 754px;
    }
}

@media (min-width: 1440px) {
    .iframe-wrapper {
        width: 1440px;
        height: 639px;
    }

    .text-side,
    .globe-side {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .body-text {
        max-width: 650px;
    }
}

/* Layout */
.content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .content {
        flex-direction: row;
    }
}

.text-side {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
}

.globe-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Typography & Interactive */
.title {
    font-family: 'Lynea Sans', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    /* Light */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.body-text {
    font-family: 'Lynea Sans', sans-serif;
    /* Changed from Connext */
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 400px;
}

.action-btn {
    background-color: #333333;
    /* Gray background */
    border: none;
    border-radius: 20px;
    /* Rounded borders */
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    font-family: 'Lynea Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn:hover {
    background-color: #555555;
    /* Lighter gray on hover */
    color: #ffffff;
}