    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background: radial-gradient(circle at top, #0f0c29, #09021a, #020617);
        color: #fff;
    }

    .header {
        text-align: center;
        padding: 50px 20px 20px;
    }

    .header h1 {
        font-size: 30px;
        font-weight: 700;
        background: linear-gradient(90deg, #8b5cf6, #22d3ee);
        -webkit-background-clip: text;
        color: transparent;
    }

    .header p {
        color: #a5b4fc;
        margin-top: 10px;
    }

    .back-btn {
        display: inline-block;
        margin: 20px;
        padding: 10px 20px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #c7d2fe;
        text-decoration: none;
        transition: .3s;
    }

    .back-btn:hover {
        background: rgba(139, 92, 246, 0.2);
    }

    .container {
        max-width: 900px;
        margin: auto;
        padding: 20px;
    }

    .card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 25px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .card h2 {
        font-size: 15px;
        margin-bottom: 15px;
        color: #22d3ee;
    }

    .stream {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px;
        margin: 12px 0;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: .3s;
        cursor: pointer;
    }

    .stream:hover {
        transform: scale(1.02);
        border-color: #8b5cf6;
    }

    .left {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .play {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, #8b5cf6, #22d3ee);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .live {
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        background: rgba(34, 211, 238, 0.15);
        color: #22d3ee;
    }

    .stream {
        display: flex;
        text-decoration: none;
        color: inherit;
    }