html, body {
    overflow: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: url('/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.dashboard-container {
    background-color: rgba(255, 255, 255, 0.93);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 440px;
    width: 90%;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid #000000;
    position: relative;
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    margin-top: -60px;
}

.dashboard-container.show {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-icon {
    width: 120px;
    margin: 0 auto;
}

.title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300 !important;
    font-size: 30px;
    color: #000000;
    margin-top: 0px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 10px;
}

.link-box {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    width: 300px;
    text-align: center;
}

.dashboard-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.social-links a {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: #d1a3ff;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-links a:hover {
    background: #333;
    color: #b983ff;
}

.footer {
    font-size: 13px;
    color: #555;
    text-align: center;
    padding-top: 5px;
}

@media (min-width: 320px) and (max-width: 650px) {
    .dashboard-icon {
        width: 90px;
        margin: 0 auto;
    }

    .dashboard-container {
        width: 280px;
        height: 400px;
        padding: 15px;
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        margin-top: -100px;
    }

    .title {
        font-size: 20px;
        margin: 10px;
    }

    .link-box {
        width: 200px;
        font-size: 16px;
    }

    .social-links a {
        font-size: 18px;
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 650px) and (max-width: 991px) {
    .dashboard-container {
        max-width: 400px;
    }

    .link-box {
        max-width: 300px;
        font-size: 17px;
    }
}
