        body {
            background-color: #121212; 
	    background-image: url("kittyslots.png")	
            font-family: 'Roboto', sans-serif;
            color: #d0d0d0;
            margin: 0;
            padding: 0;
            transition: all 0.5s;
        }
        .container {
            max-width: 960px;
            margin: 40px auto;
            padding: 20px;
            background-color: #1e1e1e;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0,255,255,0.5);
        }
        h1 {
            text-align: center;
            color: #00ffea;
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 300;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #333333;
        }
        th {
            background-color: #006064;
            color: #00ffea;
            font-size: 1.1rem;
        }
        tr:hover {
            background-color: #2a2a2a;
        }
        tr:nth-child(even) {
            background-color: #242424;
        }
        .export-button, input[type="submit"], input[type="text"] {
            border-radius: 5px;
            padding: 10px;
            margin: 5px 0;
            border: none;
            box-shadow: inset 0 0 5px rgba(0,255,255,0.5);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .export-button {
            background-color: #006064;
            color: #00ffea;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 2px 15px rgba(0,255,255,0.5);
        }
        input[type="submit"] {
            background-color: #006064;
            color: #00ffea;
        }
        input[type="text"] {
            background-color: #2a2a2a;
            color: #d0d0d0;
        }
        .export-button:hover, input[type="submit"]:hover {
            background-color: #00ffea;
            color: #006064;
        }
        .logo img {
            max-width: 175px;
            margin-bottom: 10px;
            border-radius: 50%;
            border: 2px solid #00ffea;
            object-fit: cover;
            width: 175px;
            height: 175px;
        }
        .red-word {
        color:red;

        }

form {
    margin-top: 20px;
}

input[type="text"],
input[type="password"] {
    background-color: #1e1e1e;
    color: #00ffea;
    padding: 10px;
    border: 1px solid #00ffea;
    border-radius: 5px;
    width: 250px;
    font-size: 16px;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #999;
}
input[type="submit"] {
    background-color: #00ffea;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background-color: #00c0ba;
}

a {
color: #00ffea;

}
