body {
    font-family: 'Press Start 2P', cursive;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    cursor: none;
}

header {
    background-color: #282c34;
    padding: 10px 0;
    text-align: center;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    color: #61dafb;
    font-size: 1.5em;
    margin-right: 20px;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: #61dafb;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a[href="#cashManagement"] {
    color: green;
}

.nav-links a[href="#coinFlipGame"] {
    color: goldenrod;
}

.nav-links a:hover {
    color: #21a1f1;
}

.balance-display {
    font-size: 0.7em;
    text-align: right;
    margin-right: 20px;
}

.dynamic-button {
    background-color: #61dafb;
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.dynamic-button:hover {
    background-color: #21a1f1;
}

.wallet-card {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 200px;
    z-index: 1000;
}

.card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 20px 0;
    width: 95%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.translucent {
    backdrop-filter: blur(10px);
    border: 2px solid;
    border-image: linear-gradient(45deg, #ff6ec4, #7873f5, #4facfe, #00f2fe) 1;
}

.input-field {
    width: calc(100% - 22px);
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.coin-choice {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

main {
    padding: 20px;
    flex: 1;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #282c34;
    color: #61dafb;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: #000;
    border-left: 5px solid;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.5s;
    border-radius: 12px;
}

.notification.info {
    border-color: #61dafb;
}

.notification.success {
    border-color: #4caf50;
}

.notification.error {
    border-color: #f44336;
}

.notification.hide {
    opacity: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    float: right;
}

.glow-blue {
    animation: glow-blue 1.5s infinite alternate;
}

@keyframes glow-blue {
    from {
        text-shadow: 0 0 10px #61dafb, 0 0 20px #61dafb, 0 0 30px #61dafb, 0 0 40px #61dafb;
    }
    to {
        text-shadow: 0 0 20px #21a1f1, 0 0 30px #21a1f1, 0 0 40px #21a1f1, 0 0 50px #21a1f1;
    }
}

.flow-border {
    position: relative;
    display: inline-block;
    padding: 5px;
}

.flow-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #ff6ec4, #7873f5, #4facfe, #00f2fe);
    background-size: 200% 200%;
    animation: flow 3s linear infinite;
    z-index: -1;
}

@keyframes flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.cursor {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #61dafb;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.welcome-section {
    text-align: center;
    padding: 50px 20px;
    color: #fff;
}

.welcome-section h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.graphics-placeholder {
    margin-bottom: 40px;
}

.welcome-graphic {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}