:root {
    --primary-color: violet;
    --text-color: #ffffff;
    --main-bg: black;
    --card-bg: #ffffff;
    --transition-speed: 0.3s;
    --background-image: url(nothing.png)
}

.electrolize-regular {
  font-family: "Electrolize", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.almendra-regular {
  font-family: "Almendra", serif;
  font-weight: 400;
  font-style: normal;
}

.im-fell-english-regular {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: normal;
}

.rosarivo-regular {
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  font-style: normal;
}

.im-fell-great-primer-regular {
  font-family: "IM Fell Great Primer", serif;
  font-weight: 400;
  font-style: normal;
}


.handjet {
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "ELGR" 1,
    "ELSH" 2;
}


.ibm-plex-sans {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


        /* --- CSS RESET --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* --- BASE STYLES --- */
        body {
            font-family: var(--font-main);
            color: var(--text-color);
            background-color: var(--main-bg);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color var(--transition-speed);
        }

        a:hover {
            color: var(--primary-color);
        }

        /* --- NAVIGATION --- */
        header {
            background-color: var(--main-bg);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 20px;
            padding-bottom: 20px;
            padding-left: 6.5rem;
            padding-right: 6.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--main-bg);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--text-color);
            letter-spacing: 0px;
            font-family: IM Fell Great Primer;
        }

        .nav-links {
            list-style-type: "✦ ";
            display: flex;
            gap: 3rem;
            font-size: 1.2rem;
            font-family: Electrolize;
        }

        .nav-links a {
            color: var(--text-color);
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* --- HERO SECTION --- */
        .hero {
            text-align: center;
            background-image: var(--background-image);
            background-repeat: repeat;
            border-top: 2px solid var(--primary-color);
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-top: 20px;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .hero p {
            font-size: 1.25rem;
            color: #ffffff;
            max-width: 600px;
            margin: 0 auto 0px auto;
            padding-bottom: 40px;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: transform var(--transition-speed), background-color var(--transition-speed);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #357ABD;
            transform: translateY(-2px);
            color: #fff;
        }

        .main-page-buttons {
            width: 150px;
                --c: rgba(255, 255, 255, 0);
    --w: 2px;
    filter:
    drop-shadow(var(--w)0 0 var(--c))
    drop-shadow(calc(var(--w) * -1) 0 0 var(--c))
    drop-shadow(0 var(--w)0 var(--c))
    drop-shadow(0 calc(var(--w) * -1) 0 var(--c));
            transition: --c, --w, filter 0.4s;
        }

        .main-page-buttons-ul {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            list-style-type: none;
        }

        .main-page-buttons:hover {
    --c: white;
    --w: 2px;
    filter:
    drop-shadow(var(--w)0 0 var(--c))
    drop-shadow(calc(var(--w) * -1) 0 0 var(--c))
    drop-shadow(0 var(--w)0 var(--c))
    drop-shadow(0 calc(var(--w) * -1) 0 var(--c));
}


        /* --- GRID/FEATURES SECTION --- */
        .features {
            max-width: 1200px;
            margin: 0 auto 80px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card {
            background-color: var(--card-bg);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #111;
        }

        .card p {
            color: #555;
        }

        /* --- FOOTER --- */
        footer {
            border-top: 2px solid var(--primary-color);
            background-color: black;
            color: #fff;
            text-align: center;
            padding: 20px 20px;
            margin-top: auto;
            position: sticky;
        }

        footer p {
            font-size: 0.9rem;
        }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .nav-links {
                display: none; /* In a real app, you'd add a hamburger menu here! */
            }
        }