* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Sfondo con logo sfocato */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 100%);
    opacity: 0.9;
}

.logo-blur {
    width: 80%;
    height: 80%;
    background-image: url('../Img/Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(12px) opacity(0.4);
    position: absolute;
    transform: scale(1.2);
}

/* Contenuto principale */
.container {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.header {
    text-align: center;
    margin: 30px 0;
    width: 100%;
}

.title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Griglia dei link */
.links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 40px;
}

.link-card {
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.link-card:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.link-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 215, 0, 0.2);
}

.link-content {
    flex: 1;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.link-url {
    font-size: 0.85rem;
    color: #aaa;
    word-break: break-all;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    width: 100%;
}

/* Animazioni */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

/* Effetti di luce */
.light-effect {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}