@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

body {
    font-family: 'Segoe UI', sans-serif;
    background: #000;
    overflow-x: hidden;
    margin: 0;
    padding-bottom: 100px;
    height: 100%;
    color: white;
}

.clock-bg {
    position: fixed;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background-color: aliceblue;
    background-image: url('/images/romannumeralclock-1922.svg');
    background-size: 400px;
    background-repeat: repeat;
    background-position: center;
    animation: rotateBackground 120s linear infinite;
    opacity: 0.8;
    z-index: 1;
    filter: grayscale(100%) brightness(1.2);
    pointer-events: none;
}

@media (min-width: 768px) {
  .clock-bg {
    background-size: 600px;
  }
}

@media (min-width: 1200px) {
  .clock-bg {
    background-size: 750px;
  }
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fog-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.glass-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    position: relative;
}

.glow {
    box-shadow: 0 0 10px #facc15aa, 0 0 30px #facc15aa;
}

.member-block {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
}

.remove-member {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    color: #dc3545;
    border: none;
    background: transparent;
}