body {
    background: #0a0a0a;
    color: white;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    padding: 50px;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    max-width: 700px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 255, 153, 0.3);
    position: relative;
    overflow: hidden;
}

h1 {
    font-size: 36px;
    background: linear-gradient(to right, #00ff99, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #00ff99;
    margin-top: 20px;
}

p {
    font-size: 18px;
    margin-top: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: linear-gradient(to right, #00ff99, #00ccff);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

/* Don't Click This Button */
.dont-click-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: linear-gradient(to right, #ff0000, #cc0000);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dont-click-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.8);
    animation: flames 0.5s infinite alternate;
}

@keyframes flames {
    0% { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff3300; }
    100% { text-shadow: 0 0 20px #ff6600, 0 0 40px #ff9900; }
}

/* Feedback Section */
.feedback-section {
    width: 60%;
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
    color: white;
}

.feedback-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.feedback-section textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    margin-bottom: 15px;
    resize: vertical;
}

.feedback-section button {
    padding: 10px 25px;
    font-size: 18px;
    color: white;
    background: linear-gradient(to right, #00ff99, #00ccff);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-section button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 153, 0.6);
}

#feedback-message {
    margin-top: 10px;
}

.hidden {
    display: none;
}
