:root {
    --bg: #050505;
    --text: #ffffff;
    --accent: #d4af37;
    --gray: #888;
}

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

body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', sans-serif; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra tutto orizzontalmente */
    overflow-x: hidden;
}

/* Cursore Desktop */
@media (min-width: 1024px) {
    .cursor { 
        width: 25px; height: 25px; border: 1px solid var(--accent); 
        border-radius: 50%; position: fixed; pointer-events: none; 
        z-index: 999; transform: translate(-50%, -50%);
    }
    * { cursor: none; }
}

/* Container Centrale */
.main-container {
    max-width: 800px; /* Larghezza colonna desktop */
    width: 100%;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra logo e testi */
    text-align: center;
    flex: 1;
}

/* LOGO - Più grande e centrale */
.logo-wrapper {
    margin-bottom: 60px;
    width: 100%;
}

.main-logo {
    width: 450px; /* Molto grande su desktop */
    max-width: 90vw;
    height: auto;
    animation: entrance 2s ease-out;
}

/* TESTI */
.title-main {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -3px;
}

.title-main span {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.description-text {
    margin: 40px auto;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 200;
    color: var(--gray);
    max-width: 550px;
}

/* TAGS - Fix per non essere tagliati */
.tags-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #222;
    padding: 12px 24px;
    transition: 0.4s;
}

.tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* WIP LOADER */
.wip-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.line-loader {
    width: 60px;
    height: 1px;
    background: #222;
    position: relative;
    overflow: hidden;
}

.line-loader::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: var(--accent);
    animation: slide 2s infinite;
}

.wip-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
}

/* FOOTER */
footer {
    width: 100%;
    padding: 40px 20px;
    border-top: 1px solid #111;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
}

/* ANIMAZIONI */
@keyframes entrance {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .main-logo { width: 280px; }
    .main-container { padding: 40px 20px; }
    .footer-content { flex-direction: column; gap: 15px; text-align: center; }
    .title-main { letter-spacing: -1px; }
}
