:root {
    /* Colori base */
    --background: hsl(0, 0%, 2%);
    --background-secondary: hsl(0, 0%, 7%);
    --foreground: hsl(0, 0%, 88%);
    --foreground-muted: hsl(0, 0%, 60%);
    
    /* Card */
    --card: hsl(0, 0%, 5%);
    --card-foreground: hsl(0, 0%, 88%);
    
    /* Primary*/
    --primary: #bc1313;
    --primary-foreground: hsl(0, 0%, 100%);
    
    /* Secondary */
    --secondary: hsl(0, 0%, 10%);
    --secondary-foreground: hsl(0, 0%, 88%);
    
    /* Muted */
    --muted: hsl(0, 0%, 15%);
    --muted-foreground: hsl(0, 0%, 60%);
    
    /* Border */
    --border: hsl(0, 0%, 15%);
    
    /* Ring */
    --ring: hsl(0, 100%, 50%);
    
    /* Radius */
    --radius: 0px;
    
    /* Glow effects */
    --glow-red: 0 0 20px hsla(0, 100%, 50%, 0.5);
    --glow-red-intense: 0 0 40px hsla(0, 100%, 50%, 0.7);
    
    /* Font families */
    --font-gothic: 'Cinzel', serif;
    --font-tech: 'Orbitron', sans-serif;
    --font-mono: 'Courier Prime', 'Courier New', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-gothic);
    color: var(--primary-foreground);
}

p b,
p strong {
    color: var(--primary);
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary) !important;
}

.mono-block {
    font-family: var(--font-mono);
    color: var(--foreground);
    opacity: 0.8;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.text-gothic {
    font-family: var(--font-gothic);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.text-tech {
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
/* LAYOUT */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-family: var(--font-gothic);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--foreground-muted);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-placeholder img{
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gothic);
    font-size: 1rem;
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-gothic);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    letter-spacing: 0.2em;
}

.logo-text:hover {
    color: var(--primary);
}

.navbar-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--foreground-muted);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    font-family: var(--font-tech);
    font-size: 0.875rem;
    color: var(--foreground-muted);
    text-decoration: none;
    padding: 0.75rem 0;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}
/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), var(--background-secondary), var(--background));
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: hsla(0, 100%, 50%, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

@media (min-width: 768px) {
    .hero-glow {
        width: 600px;
        height: 600px;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1400px;
}

.hero-title {
    font-family: var(--font-gothic);
    font-size: clamp(2.5rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--primary-foreground);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.hero-title:hover {
    opacity: 0.8;
    color: var(--primary-foreground);
    z-index: -1;
    animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.hero-subtitle {
    font-family: var(--font-gothic);
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
}

.hero-subtitle:hover {
    opacity: 0.8;
    color: var(--primary);
    z-index: -1;
    animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-box {
    width: 32px;
    height: 48px;
    border: 2px solid var(--foreground-muted);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow {
    color: var(--primary);
}
/* ABOUT SECTION */
.about-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}

@media (min-width: 768px) {
    .about-section {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image {
    aspect-ratio: 4/3;
    background-color: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    text-align: center;
}

.about-logo-box {
    width: 128px;
    height: 128px;
    margin: 0 auto 1rem;
    border: 2px solid hsla(0, 100%, 50%, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-letter {
    font-family: var(--font-gothic);
    font-size: 4rem;
    color: hsla(0, 100%, 50%, 0.5);
}

.image-label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--foreground-muted);
}
/* VALUES SECTION */
.values-section {
    padding: 4rem 0;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .values-section {
        padding: 8rem 0;
    }
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}
/* HORROR CARD */
.horror-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .horror-card {
        padding: 2rem;
    }
}

.horror-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-red);
}

.card-icon {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.card-title {
    font-family: var(--font-gothic);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.5rem;
    }
}
/* TEAM SECTION */
.team-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}

@media (min-width: 768px) {
    .team-section {
        padding: 8rem 0;
    }
}

.team-group {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .team-group {
        margin-bottom: 5rem;
    }
}

.team-group:last-child {
    margin-bottom: 0;
}

.team-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .team-divider {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, hsla(0, 100%, 50%, 0.5));
}

.divider-line:last-child {
    background: linear-gradient(to left, transparent, hsla(0, 100%, 50%, 0.5));
}

.team-group-title {
    font-family: var(--font-tech);
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.team-card {
    text-align: center;
}

.team-avatar {
    aspect-ratio: 1;
    width: 100%;
    max-width: 160px;
    margin: 0 auto 1rem;
    background-color: var(--background-secondary);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
    .team-avatar {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }
}

.team-card:hover .team-avatar {
    border-color: var(--primary);
}

.team-avatar svg {
    color: var(--foreground-muted);
    transition: color 0.3s ease;
}

.team-card:hover .team-avatar svg {
    color: var(--primary);
}

.team-name {
    font-family: var(--font-gothic);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-foreground);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.team-name-Manager {
    font-family: var(--font-gothic);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .team-name {
        font-size: 1.125rem;
    }
}

.team-role {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .team-role {
        font-size: 0.875rem;
    }
}
/* GLITCH BUTTON */
.glitch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-tech);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glitch-btn:hover {
    animation: glitch-shake 0.3s ease-in-out;
}

.glitch-btn.outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.glitch-btn.outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px hsla(0, 100%, 50%, 0.3);
    }
    50% {
        box-shadow: 0 0 40px hsla(0, 100%, 50%, 0.6);
    }
}
/* FOOTER */
.footer {
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .footer {
        padding: 3rem 0;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
}

.footer-logo {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-logo {
        text-align: left;
    }
}

.footer-brand {
    font-family: var(--font-gothic);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.15em;
}

@media (min-width: 768px) {
    .footer-brand {
        font-size: 1.5rem;
    }
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--foreground-muted);
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .footer-tagline {
        font-size: 0.875rem;
    }
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--foreground);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

.footer-info {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-info {
        text-align: right;
    }
}

.footer-email {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--foreground-muted);
}

@media (min-width: 768px) {
    .footer-email {
        font-size: 0.875rem;
    }
}
.footer-copyright {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--foreground-muted);
    margin-top: 0.5rem;
}
/* GLOW EFFECTS */
.glow-red {
    box-shadow: var(--glow-red);
}
.glow-red-intense {
    box-shadow: var(--glow-red-intense);
}