* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #0a0a0a;
    color: white;
}

/* NAVBAR */
nav {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav .logo {
    font-weight: 700;
    color: #00ff88;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #00ff88;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, #000000, #111111);
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #00ff88;
}

.hero p {
    margin-bottom: 30px;
    font-size: 20px;
}

.btn {
    background: #00ff88;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #00cc6a;
}

/* SECTIONS */
.section {
    padding: 100px 50px;
    text-align: center;
}

.section h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.dark {
    background: #111;
}

/* GAME CARD */
.game-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 0 20px rgba(0,255,136,0.3);
}

.game-card button {
    margin-top: 20px;
    padding: 10px 25px;
    background: #00ff88;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* FORMS */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #1f1f1f;
    color: white;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

.contact-form button {
    background: #00ff88;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: #00cc6a;
}

/* COMMUNITY */
.community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.community-links .discord {
    background: #7289da;
}

.community-links .roblox {
    background: #ff5c5c;
}

.community-links .btn:hover {
    opacity: 0.8;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: black;
    color: gray;
}

/* Peidab tavalise hiire */
* {
    cursor: none;
}

/* Väike täpp */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: cyan;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Suurem ring */
.cursor-ring {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid orange;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: width 0.15s ease, height 0.15s ease, border 0.15s ease;
}

/* Suurendab ringi hoveril nuppude ja linkide kohal */
button:hover ~ .cursor-ring,
a:hover ~ .cursor-ring,
.nav-btn:hover ~ .cursor-ring {
    width: 40px;
    height: 40px;
    border-color: cyan;
}

/* Cursor override */
* {
    cursor: none;
}

.cursor-dot {
    width: 7px;
    height: 7px;
    background: #00ffff;
}

.cursor-ring {
    width: 28px;
    height: 28px;
    border: 2px solid #ff9f1a;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.16s ease, border-color 0.16s ease;
}

body.cursor-hover .cursor-ring {
    transform: translate(-50%, -50%) scale(1.35);
    border-color: #00ffff;
}
