.main { background-position: center; background-repeat: repeat; background-size: cover; position: relative; box-shadow: inset 0 0 0 2000px rgba(230, 240, 255, 0.85); /* Frosty blue overlay */ } .navbar-nav { display: flex; justify-content: flex-end; } .nav-item { padding: 8px; } img { background: #e6f0ff; /* Icy background for images */ border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .game-section { background-image: url('/assets/bg1.png'); background-position: bottom; background-repeat: no-repeat; background-size: cover; position: relative; height: 600px; background-color: #e6f0ff; /* Pale ice blue */ display: flex; align-items: flex-end; justify-content: center; box-shadow: inset 0 0 80px rgba(0, 64, 128, 0.2); } .open-modal { width: 350px; min-height: 50px; background-color: #f0f8ff; border: 1px solid #a3c2f2; border-radius: 12px; padding: 15px; box-shadow: 0 4px 15px rgba(0, 64, 128, 0.15); } .cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #2a3b47; /* Dark glacier grey */ color: #fff; padding: 15px; text-align: center; font-size: 14px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25); } .cookie-banner > p { margin: 0; flex: 1; color: #e0f7fa; } .cookie-banner > a { background: #64b5f6; /* Cold sky blue */ color: #fff; padding: 8px 15px; text-decoration: none; font-weight: bold; border-radius: 5px; margin-left: 10px; transition: background 0.3s ease; } .cookie-banner > a:hover { background: #42a5f5; } /* Hide banner when the user clicks "Accept" */ #hide-cookie:target { display: none; } .spacer { height: 60px; } @media (max-width: 560px) { .modal-dialog, .modal { max-width: 100vw !important; margin: 0; } .modal-content { border-radius: 0; } } footer > .navbar { background-color: #2e3b4e; /* Deep snowy slate */ } header .navbar-nav .nav-link:hover { color: #64b5f6 !important; /* Icy blue on hover */ transition: color 0.3s ease-in-out; }