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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #c87908;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #e09a20;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

.hero-logo {
    width: 160px;
    height: auto;
    animation: fadeIn 1.2s ease forwards;
}

.hero-logo path {
    transition: fill 0.5s;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.8s 0.6s ease forwards;
}

.ip-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    padding: 1rem 0;
    margin-top: auto;
}

.hero-line {
    width: 60px;
    height: 2px;
    background: #c87908;
    margin: 1.5rem auto 0;
    opacity: 0;
    animation: fadeIn 0.6s 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}
