body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.main-container {
    max-width: 680px;
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.08);
    padding-bottom: 100px;
}

.profile-image-container {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
}

.text-container h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
}

.text-container p {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    font-weight: 500;
    text-align: left;
    margin-bottom: 1.5em;
}

.button,
.second-button {
    display: block;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
    color: #fff;
    border: 1px solid #444;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.button:hover,
.second-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.1);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
    display: block;
}

.second-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #5D9CEC 0%, #4A89DC 100%);
    color: white;
    border: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    max-width: 680px;
    width: calc(100% - 30px);
    z-index: 999;
    animation: pulse 2s infinite;
}

.second-button img {
    width: 30px;
    height: 30px;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.03); }
    100% { transform: translateX(-50%) scale(1); }
}

.footer-disclaimer {
    padding: 20px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .text-container h1 {
        font-size: 22px;
    }

    .text-container p {
        font-size: 15px;
    }

    .button,
    .second-button {
        font-size: 16px;
        padding: 15px;
    }
}
