:root {
    --bg-color: #f5f5f5;
    --container-bg: rgba(255, 255, 255, 0.9);
    --text-primary: #333333;
    --text-secondary: #666666;
    --accent: #db3434;
    --shadow: rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh; 
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color);
    overflow-x: hidden;
}


.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(8px) brightness(0.7);
    object-fit: cover;
    transform: scale(1.1);
}

.container {
    padding: 2rem;
    background: var(--container-bg);
}

.container,
.notification-container {
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px var(--shadow);
}

.profile {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #1DA1F2;
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
}

.verified-badge i {
    color: white;
    font-size: 10px;
}

.notification-container {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--container-bg);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.notification-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.bottom-notification {
    margin-top: 1rem;
    margin-bottom: 0;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    padding: 3px;
}

.profile h1 {
    margin: 1rem 0 0.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.profile p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-card i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent);
    width: 24px;
}

.link-card:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 5px 15px var(--shadow);
}

.shop-card {
    background: var(--accent);
    color: white;
}

.shop-card i {
    color: white;
}

.shop-card:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 52, 52, 0.3);
}

.shop-card:hover i {
    color: white;
}

@media (min-width: 768px) {
    .container {
        border-radius: var(--border-radius);
        box-shadow: 0 8px 30px var(--shadow);
        width: 90%;
    }
}

@media (max-width: 480px) {
    body {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0;
        padding-bottom: 0;
    }

    .container,
    .notification-container {
        width: 100%;
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .link-card {
        padding: 0.875rem 1.25rem;
    }

    .notification-container {
        margin-bottom: 0.5rem;
    }

    .bottom-notification {
        margin-top: 0.5rem;
    }
}

