 body {
            background-color: #0b1326;
            color: #dae2fd;
            overflow-x: hidden;
        }
        .glass-card {
            background: rgba(23, 31, 51, 0.4);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            border-color: rgba(103, 217, 201, 0.3);
            background: rgba(23, 31, 51, 0.6);
            transform: translateY(-4px);
        }
        .glow-cyan {
            box-shadow: 0 0 20px rgba(69, 216, 237, 0.15);
        }
        .text-gradient {
            background: linear-gradient(135deg, #67d9c9 0%, #45d8ed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .grid-bg {
            background-image: radial-gradient(circle at 2px 2px, rgba(103, 217, 201, 0.05) 1px, transparent 0);
            background-size: 40px 40px;
        }