* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #48e33a, #0c7c1b);
    padding: 20px;
    color: #ffffff;
}

.icon {
    position: absolute;
    top: 20px;
    left: 20px;
}

.icon img {
    width: 70px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.icon img:hover {
    transform: scale(1.1);
}

h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.iframe-container {
    width: 100%;
    max-width: 1020px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    padding: 12px;
}

.iframe-container:hover {
    transform: scale(1.03);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.4);
}

iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    .iframe-container {
        width: 90%;
    }
}