* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
    color: #222;
    min-height: 100vh;
}

.topbar {
    height: 64px;
    background: #111827;
    display: flex;
    align-items: center;
    padding: 0 32px;
    color: white;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.logo {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.container {
    max-width: 900px;
    margin: 70px auto;
    padding: 0 20px;
}

.meeting-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.camera-area {
    height: 270px;
    background: #202124;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.camera-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #3a3b3f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 15px;
}

.camera-area p {
    color: #d1d5db;
}

.content {
    padding: 40px;
    text-align: center;
}

h1 {
    font-size: 30px;
    margin-bottom: 12px;
}

.description {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 30px;
}

.meeting-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.meeting-info div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.label {
    color: #9ca3af;
    font-size: 13px;
}

.online {
    color: #16a34a;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 15px 42px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.download-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.download-icon {
    font-size: 22px;
}

.file-info {
    margin-top: 16px;
    font-size: 13px;
    color: #9ca3af;
}

.footer-note {
    text-align: center;
    margin-top: 22px;
    color: #9ca3af;
    font-size: 13px;
}

@media (max-width: 600px) {

    .topbar {
        padding: 0 18px;
    }

    .container {
        margin: 30px auto;
    }

    .camera-area {
        height: 210px;
    }

    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 25px;
    }

    .meeting-info {
        gap: 25px;
    }

    .download-button {
        width: 100%;
    }
}