* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Courier New", monospace;
}

body {
    background-color: #151515;
    color: #c8c8c8;
    background-image: url("https://rust.facepunch.com/img/misc/rust_logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: 70% auto;
    background-blend-mode: soft-light;
    opacity: 0.9;
    cursor: none;
}

/* Custom campfire cursor */
.cursor {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.trail {
    position: absolute;
    font-size: 1rem;
    opacity: 0.8;
    pointer-events: none;
    animation: fadeOut 0.6s ease-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 10px,
        rgba(30, 30, 30, 0.1) 10px,
        rgba(30, 30, 30, 0.1) 20px
    );
    pointer-events: none;
}

.logo h1 {
    font-size: 5rem;
    text-align: center;
    color: #cd412b;
    text-shadow: 0 0 10px rgba(205, 65, 43, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 4px;
    font-weight: 900;
}

.tagline {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
    border-top: 2px solid rgba(205, 65, 43, 0.5);
    border-bottom: 2px solid rgba(205, 65, 43, 0.5);
    padding: 1rem 0;
    width: 100%;
    max-width: 800px;
}

.highlight {
    font-weight: bold;
    color: #cd412b;
}

.resources {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.resource {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border: 1px solid rgba(205, 65, 43, 0.3);
    text-align: center;
    min-width: 100px;
}

.resource-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.resource-value {
    font-weight: bold;
    color: #cd412b;
}

.coming-soon {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 3rem;
    border: 2px solid #cd412b;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    color: #cd412b;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 10px;
    border: 1px solid transparent;
}

.social-icons a:hover {
    color: white;
    border: 1px solid rgba(205, 65, 43, 0.5);
    transform: translateY(-3px);
}

footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}
