@font-face {
    font-family: 'Audiowide';
    src: url('/static/fonts/audiowide.ttf') format('truetype');
}
@keyframes cardFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInPage {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1024px) {
    .card {
        flex: 0 0 calc(45% - 20px);
    }
}
@media (max-width: 600px) {
    .card {
        flex: 0 0 100%;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h2 {
    text-align: center;
}
body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    padding: 20px;
    animation: fadeInPage 1s ease forwards;
}
h1 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Audiowide', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2;
}
h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.card {
    flex: 0 0 calc(25% - 20px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
    border: 2px solid rgba(138, 43, 226, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    opacity: 0;
    animation: cardFadeUp 0.8s ease forwards;
    text-decoration: none;
    color: inherit;
    display: block;
}
.card:nth-child(1) {
    animation-delay: 0.3s;
}
.card:nth-child(2) {
    animation-delay: 0.5s;
}
.card:nth-child(3) {
    animation-delay: 0.7s;
}
.card:nth-child(4) {
    animation-delay: 0.9s;
}
.card:nth-child(5) {
    animation-delay: 1.1s;
}
.card:nth-child(6) {
    animation-delay: 1.3s;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.8),
                0 0 50px rgba(138, 43, 226, 0.6);
    border-color: rgba(255, 215, 0, 0.9);
    color: inherit;
    outline: none;
}
.card hr {
    border: none;
    height: 1px;
    background-color: white;
    margin: 15px 0;
}
.card .technologies {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}
.technologiesText {
    margin-top: 20px;
    text-align: center;
}
.card .technologies p {
    font-size: 0.9rem;
    color: #ccc;
}
.card img {
    max-width: 30px;
    max-height: 30px;
}
.apple-animation {
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.androidColor {
    color: #3DDC84;
    text-align: center;
}
.iosColor {
    color: #F05138;
    text-align: center;
}

h2, p {
    color: white;
}

@media (max-width: 768px) {
    .card-container{
        flex-direction: column;
    }
}