/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('../images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 30px;
    background-color: rgba(0, 128, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1;
}

/* Profile Section */
.profile {
    margin-bottom: 30px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.profile h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
}

.achievements-container {
    margin-bottom: 20px;
}

.achievement-section {
    margin-bottom: 15px;
}

.achievement-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.achievement-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 6px 0 10px 0;
    width: 100%;
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.achievements p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.achievements span {
    font-weight: 600;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.upcoming-event {
    background-color: rgba(0, 255, 0, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.9);
    font-weight: 600;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.upcoming-event:hover {
    background-color: rgba(0, 255, 0, 0.9);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
}

.tvp-link {
    background-color: rgba(30, 144, 255, 0.2);
    border: 2px solid rgba(30, 144, 255, 0.3);
    font-weight: 600;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.tvp-link:hover {
    background-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
}

.sponsor-link {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.sponsor-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

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

.link i {
    margin-right: 10px;
    font-size: 20px;
}

/* Footer */
footer {
    font-size: 14px;
    color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile h1 {
        font-size: 24px;
    }
    
    .link {
        padding: 14px;
    }
}
