body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(ellipse at 70% 70%, #3a2a1a 0%, #1a1612 60%, #0a0908 100%);
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

.logo-bar {
    position: absolute;
    top: 32px;
    left: 48px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-bar img {
    height: 54px;
    width: auto;
    display: block;
}

.centered-title {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    margin-top: 100px;
    color: #fff;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 2;
}

.gold-underline {
    display: block;
    width: 340px;
    max-width: 80vw;
    height: 1px;
    margin: 18px auto 0 auto;
    background: linear-gradient(90deg, #e7b86a 0%, #f7e7b6 100%);
    border-radius: 2px;
}

.centered-desc {
    text-align: center;
    font-size: 18px;
    color: #f3e9d7;
    margin-bottom: 36px;
    margin-top: 22px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    z-index: 2;
    position: relative;
}

.view-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 60vh;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
    max-width: 100%
}

.view-frame iframe {
    width: 90vw;
    max-width: 1600px;
    aspect-ratio: 16/9;
    border: 1.5px solid #2d2217;
    border-radius: 10px;
    box-shadow: 0 4px 32px 0 rgba(231, 184, 106, 0.13);
    background: #18120c;
}

@media (max-width: 900px) {
    .centered-title {
        font-size: 2rem;
        margin-top: 120px;
    }

    .centered-desc {
        font-size: 1rem;
    }

    .logo-bar {
        top: 16px;
        left: 12px;
    }

    .logo-bar img {
        height: 38px;
    }

    .gold-underline {
        width: 180px;
    }
}

@media (max-width: 600px) {
    .centered-title {
        font-size: 1.2rem;
        margin-top: 80px;
    }

    .centered-desc {
        font-size: 0.95rem;
    }

    .view-frame iframe {
        width: calc(100dvw - 20px);
        border-radius: 8px;
    }

    .view-frame iframe {
        aspect-ratio: 4/5
    }
}

.view-frame{
    z-index: 10 !important;
}
#mainFrame.full{
    position:fixed;
    height: 100dvh;
    width: 100dvw;
    max-width: 100dvw;
    z-index: 9999;
    left: 0;
    top:0;
    border-radius: 0;
    border: 0;
}