@import url('https://fonts.googleapis.com/css2?family=Rubik+Scribble&display=swap');

* {
    font-family: "Rubik Scribble", system-ui;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    background: #000;
    color: gold;
}

header {
    background: #000;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    color: gold;
    font-size: 1.8em;
    text-decoration: none;
    font-weight: bold;
}

.navigation a {
    color: gold;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1.1em;
    transition: color 0.3s;
}

.navigation a:hover {
    color: crimson;
}

section {
    padding: 100px 20px;
}

.main {
    min-height: 100vh;
    background-image: url(images/ANONEM.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.main h2 {
    color: gold;
    font-size: 2.5em;
    animation: glow 1.5s infinite alternate;
}

.main h3 {
    color: gold;
    font-size: 1.4em;
    margin-top: 10px;
}

.main-btn {
    background: crimson;
    color: gold;
    padding: 12px 25px;
    border-radius: 10px;
    margin: 20px 0;
    display: inline-block;
    transition: transform 0.3s, background 0.3s;
    font-weight: bold;
}

.main-btn:hover {
    background: gold;
    color: #000;
    transform: scale(1.1);
}

.social-icons a {
    color: #00c8ff;
    margin: 0 10px;
    font-size: 1.8em;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.title {
    text-align: center;
    color: gold;
    font-size: 2.2em;
    margin-bottom: 30px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card, .project-card {
    background: #111;
    margin: 10px;
    padding: 20px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover, .project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.icon {
    font-size: 3em;
    margin-bottom: 10px;
    color: gold;
}

.project-card img {
    width: 100%;
    border-radius: 10px;
}

.project-info span {
    font-size: 1.2em;
    color: crimson;
    font-weight: bold;
}

.crypto-ticker {
    background: #111;
    color: gold;
    padding: 10px;
    white-space: nowrap;
    overflow-x: auto;
}

.crypto-item {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.crypto-item img {
    height: 30px;
    margin-right: 10px;
}

.footer {
    background: #111;
    color: gold;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: #00c8ff;
    margin: 0 10px;
    transition: transform 0.3s;
}

.footer a:hover {
    transform: scale(1.2);
}

@keyframes glow {
    from { text-shadow: 0 0 10px gold; }
    to { text-shadow: 0 0 20px gold; }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    .navigation {
        margin-top: 10px;
    }
    .main h2 {
        font-size: 2em;
    }
    .main h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }
    .navigation a {
        font-size: 1em;
    }
    .main h2 {
        font-size: 1.5em;
    }
    .main h3 {
        font-size: 1em;
    }
    .main-btn {
        width: 100%;
    }
    .card, .project-card {
        width: 90%;
    }
}
.project-title span {
    color: gold;
    font-size: 1.4em;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.project-title a.more-details {
    background-color: crimson;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
}

.project-title a.more-details:hover {
    background-color: gold;
    color: black;
    transform: scale(1.1);
}

