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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%), url('background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: center;
    align-content: center;
    padding: 40px;
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    body {
        display: flex;
        flex-direction: column;
        padding: 20px 20px;
        gap: 0;
        transition: all 0.3s ease;
    }

    .container,
    .card {
        max-width: 100%;
        width: 100%;
        margin: 20px auto;
        padding: 30px;
        transition: all 0.3s ease;
    }

    .container {
        min-height: auto;
    }

    h1 {
        font-size: 20px;
    }

    .link-button {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .link-button img {
        width: 12px;
        height: 12px;
    }

    a[href*="tiktok.com"] img,
    a[href*="facebook.com"] img {
        width: 15px;
        height: 15px;
    }

    .links {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .card.about,
    .card.events {
        grid-row: auto;
    }

    .card.about {
        margin-top: 40px;
    }
}

.profile {
    margin-bottom: 40px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 30px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    font-size: 28px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.link-button:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.5);
}

.link-button img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

a[href*="tiktok.com"] img,
a[href*="facebook.com"] img {
    width: 48px;
    height: 48px;
}

.card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    grid-column: 2;
    transition: all 0.3s ease;
}

.card.about {
    grid-row: 1;
    margin-bottom: 15px;
}

.card.events {
    grid-row: 2;
    margin-top: 15px;
}

.container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    text-align: center;
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 550px;
    transition: all 0.3s ease;
}

.card h2 {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.material-symbols-rounded {
    color: white;
    font-size: 24px;
}

.about-item p {
    color: white;
    font-size: 15px;
    margin: 0;
}

.events-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    text-align: center;
    padding: 10px;
}

.event-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-item h3 {
    color: white;
    font-size: 18px;
    margin: 0 0 15px 0;
}

.event-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.event-detail:last-child {
    margin-bottom: 0;
}

.event-detail p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}
