
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
body {
    font-family: 'Rubik Mono One', sans-serif;
    background: #000 !important;
    color: #ff1493;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}
.flex.gap-4 {
    gap: 1rem;
}
a {
    color: #ff1493 !important;
    letter-spacing: 0.5px;
}
a:hover {
    color: #ff69b4 !important;
}
/* Simplified styles for linear layout */
img {
    transition: all 0.3s ease;
    border: 2px solid #ff1493;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

img:hover {
    opacity: 0.9;
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 25px rgba(255,20,147,0.7);
}
.bg-pink-600\/20 {
    background-color: rgba(219, 39, 119, 0.2);
}
.bg-pink-800\/50 {
    background-color: rgba(157, 23, 77, 0.5);
}
.bg-pink-700\/50 {
    background-color: rgba(190, 24, 93, 0.5);
}

/* Info line hover animations */
.flex.items-center.space-x-4 {
    transition: all 0.3s ease, color 0.5s ease;
    cursor: default;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #ff1493;
}

.flex.items-center.space-x-4:hover {
    background-color: rgba(255, 20, 147, 0.1);
    transform: translateX(5px);
    color: white !important;
}

.flex.items-center.space-x-4:hover i {
    transform: scale(1.2);
    color: white !important;
}

.flex.items-center.space-x-4:hover span {
    color: white !important;
}
.flex.items-center.space-x-4 i,
.flex.items-center.space-x-4 span {
    transition: all 0.3s ease, color 0.5s ease;
}
@keyframes pulse {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}
.flex-col.md\:flex-row {
    flex-direction: column;
}
.w-full.md\:w-1\/2,
.w-full.md\:w-1\/3 {
    width: 100%;
}