* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #751c1c;
    /* red fallback */
     background-image: url("/images/Godd-ComplexX-site-background-skull-Black.png");
    /* replace with your image */
    background-size: ;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* static background */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay for contrast */
.overlay {
    background: transparent);
    /* red overlay */
    padding: 60px;
    text-align: center;
    color: #fff;
    max-width: 600px;
}

/* Typography */
.overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Button */
.cta {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #b30000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta:hover {
    background: #ffcccc;
    color: #800000;
}