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

body {
    font-family: 'Impact', sans-serif;
    background-image: url('guilty.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
}

.nav-logo h1 {
    color: rgb(0, 0, 0);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.buy-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #8B5CF6;
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-family: 'Impact', sans-serif;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.buy-button:hover {
    transform: scale(1.05);
    background-color: #7C3AED;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.oosh-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.main-content {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} 


