* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Language Toggle */
.language-toggle {
    margin-bottom: 20px;
    text-align: right;
}

#lang-toggle {
    background-color: #4b0082;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
}

#lang-toggle:hover {
    background-color: #6a0dad;
}

/* Profile Image */
.profile-container {
    margin: 30px 0;
}

#profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4b0082;
    transition: transform 0.3s, box-shadow 0.3s;
}

#profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(75, 0, 130, 0.7);
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 16px;
    gap: 8px;
}

.social-btn:hover {
    background-color: #4b0082;
    transform: translateY(-3px);
}

.social-btn i {
    font-size: 20px;
}

/* Comments Section */
.comments-section {
    background-color: #111;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: left;
}

.comments-section h2 {
    color: #8a2be2;
    margin-bottom: 20px;
    text-align: center;
}

#comments-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 10px;
}

.comment {
    background-color: #222;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 3px solid #8a2be2;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.comment-text {
    color: #eee;
    font-size: 16px;
}

.like-btn {
    background-color: transparent;
    border: none;
    color: #ffd700;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}

.like-btn:hover {
    color: #fff;
}

/* Comment Form */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#comment-input {
    width: 100%;
    padding: 10px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    resize: vertical;
    min-height: 80px;
}

#comment-input:focus {
    outline: none;
    border-color: #8a2be2;
}

#post-comment-btn {
    background-color: #8a2be2;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#post-comment-btn:hover {
    background-color: #9400d3;
}

.guest-message {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.guest-message p {
    margin-bottom: 15px;
    color: #ccc;
}

.guest-message button {
    background-color: #4b0082;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.guest-message button:hover {
    background-color: #6a0dad;
}

/* Animations */
@keyframes fadeInBlur {
    from {
        opacity: 0;
        filter: blur(8px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

body {
    animation: fadeInBlur 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    #profile-img {
        width: 120px;
        height: 120px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}