/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0f172a;
    color: #e5e7eb;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #020617;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #22c55e;
    opacity: 0.8;
    box-shadow:
        0 6px 25px rgba(0, 255, 76, 0.12),
        0 0 20px rgba(90, 255, 134, 0.18),
        inset 0 0 0 1px rgba(17, 110, 45, 0.527);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: url("Gamer.jpg") center/cover no-repeat;
    color: white;
    opacity: 0.7;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #22c55e;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 1s ease-in-out;
}

.btn:hover {
    transform: scale(1.07);
    color: #22c55e;
    background-color: black;
}

.info {
    padding: 2rem;
}

.cards {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.card {
    background: #020617;
    padding: 1rem;
    border-radius: 8px;
    flex: 1;
    transition: all 1s ease-in-out;
    color: #e5e7eb;
}

.card:hover {
    transform: scale(1.07);
    color: #020617;
    background-color: #e5e7eb;
}

.form-section {
    padding: 2rem;
    max-width: 500px;
    margin: auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

input, textarea, button {
    padding: 0.6rem;
    border-radius: 5px;
    border: none;
}

form input, form textarea {
    width: 100%;
    border: 1px solid #555;
    background: #111827;
    color: #f3f4f6;
    transition: 0.3s;
}

form input:focus, form textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 5px #22c55e;
    outline: none;
}

button {
    background: #22c55e;
    font-weight: bold;
    cursor: pointer;
}

form button {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: black;
    border: none;
    transition: transform 0.2s;
}

form button:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 1rem;
    background: #020617;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }

    header {
        flex-direction: column;
        gap: 1rem;
    }
}

.location {
    padding: 2rem;
    text-align: center;
}

.location h2 {
    margin-bottom: 1rem;
}

iframe {
    border-radius: 10%;
    border: 0;
    width: 50% ;
    height: 250px ;
}

#particles-container {
    position: relative;
    width: 100%;
    height: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: fly 3s ease-out forwards;
}

@keyframes fly {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-100px) translateX(calc(-50px + 100px * var(--rand))) scale(0.5); opacity: 0; }
}

main {
    flex: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    width: 70px;
    height: auto;
    border-radius: 20%;
    border: 3px solid #16a34a92;
    transition: all 1s ease-in-out;
}

.logo:hover {
    transform: scale(1.2);
    box-shadow:
        0 6px 26px rgba(0, 161, 83, 0.836),
        0 0 30px rgba(3, 135, 31, 0.742);
}

.tekst:hover {
    color: #22c55eaa;
    text-shadow: 0 0 5px #16a34a;
    transition: all 0.6s ease;
}

#copyright, #support {
    color: white;
    transition: all 0.6s ease-in-out;
}

#copyright:hover, #support:hover {
    color: #23d20cf6;
    text-shadow: 0 0 5px #16a34a;
}

 a{
    text-decoration: none;
 }