/* =========================================
   TOOLVERSE NEON DARK THEME
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================================
   BODY
========================================= */

body{

    background:
    radial-gradient(circle at top left,#101b45 0%,#050816 40%,#020617 100%);

    font-family:
    Inter,
    Arial,
    sans-serif;

    padding:40px 15px;

    color:#ffffff;

    overflow-x:hidden;
}

/* =========================================
   MAIN WRAPPER
========================================= */

.tv-barcode-wrap{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;
}

/* =========================================
   CARD
========================================= */

.tv-barcode-card{

    width:100%;
    max-width:650px;

    position:relative;

    background:
    linear-gradient(
    135deg,
    rgba(14,23,55,.92),
    rgba(5,10,30,.95)
    );

    backdrop-filter:blur(18px);

    border-radius:34px;

    padding:36px;

    border:
    1px solid rgba(98,0,255,.35);

    box-shadow:
    0 0 40px rgba(98,0,255,.18),
    0 0 90px rgba(0,140,255,.10);

    overflow:hidden;
}

/* =========================================
   GLOW EFFECTS
========================================= */

.tv-barcode-card::before{

    content:'';

    position:absolute;

    top:-120px;
    left:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(168,85,247,.35),
    transparent 70%
    );

    filter:blur(10px);

    pointer-events:none;
}

.tv-barcode-card::after{

    content:'';

    position:absolute;

    bottom:-120px;
    right:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(0,183,255,.30),
    transparent 70%
    );

    filter:blur(10px);

    pointer-events:none;
}

/* =========================================
   TITLE
========================================= */

.tv-barcode-card h2{

    margin:0;

    text-align:center;

    font-size:48px;

    line-height:1.1;

    font-weight:900;

    letter-spacing:-1px;

    background:
    linear-gradient(
    90deg,
    #c084fc,
    #60a5fa,
    #22d3ee
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================================
   DESCRIPTION
========================================= */

.tv-barcode-card p{

    margin-top:14px;
    margin-bottom:30px;

    text-align:center;

    color:#cbd5e1;

    font-size:16px;

    line-height:1.8;
}

/* =========================================
   INPUTS
========================================= */

.tv-barcode-card input,
.tv-barcode-card select{

    width:100%;

    height:62px;

    border-radius:20px;

    border:
    1px solid rgba(96,165,250,.20);

    background:
    rgba(255,255,255,.04);

    padding:0 18px;

    color:#ffffff;

    font-size:16px;

    margin-bottom:18px;

    outline:none;

    transition:.25s ease;

    backdrop-filter:blur(10px);

    box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.02);
}

/* PLACEHOLDER */

.tv-barcode-card input::placeholder{

    color:#94a3b8;
}

/* FOCUS */

.tv-barcode-card input:focus,
.tv-barcode-card select:focus{

    border-color:#60a5fa;

    background:
    rgba(255,255,255,.06);

    box-shadow:
    0 0 0 4px rgba(96,165,250,.14),
    0 0 18px rgba(96,165,250,.20);
}

/* SELECT OPTION */

.tv-barcode-card select option{

    background:#081120;

    color:#ffffff;
}

/* =========================================
   BUTTON
========================================= */

.tv-barcode-card button{

    width:100%;

    height:64px;

    border:none;

    border-radius:22px;

    background:
    linear-gradient(
    135deg,
    #9333ea,
    #2563eb,
    #06b6d4
    );

    background-size:200% 200%;

    color:#ffffff;

    font-size:17px;

    font-weight:800;

    cursor:pointer;

    transition:.3s ease;

    box-shadow:
    0 10px 30px rgba(37,99,235,.30);
}

/* BUTTON HOVER */

.tv-barcode-card button:hover{

    transform:translateY(-2px);

    background-position:right center;

    box-shadow:
    0 16px 40px rgba(37,99,235,.40);
}

/* =========================================
   BARCODE BOX
========================================= */

.barcode-box{

    margin-top:30px;

    padding:30px;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(96,165,250,.20);

    text-align:center;

    overflow:auto;

    backdrop-filter:blur(12px);

    transition:.25s ease;
}

/* HOVER */

.barcode-box:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 30px rgba(96,165,250,.12);
}

/* =========================================
   BARCODE
========================================= */

#barcode{

    width:100%;

    max-width:100%;

    background:#ffffff;

    padding:18px;

    border-radius:18px;

    display:block;

    margin:auto;
}

/* =========================================
   DOWNLOAD BUTTON
========================================= */

#downloadBtn{

    display:none;

    margin-top:24px;

    text-decoration:none;

    background:
    linear-gradient(
    135deg,
    #9333ea,
    #2563eb
    );

    color:#ffffff;

    padding:15px 24px;

    border-radius:16px;

    font-weight:800;

    font-size:15px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    transition:.25s ease;

    box-shadow:
    0 10px 24px rgba(37,99,235,.25);
}

/* HOVER */

#downloadBtn:hover{

    transform:translateY(-2px);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    body{

        padding:24px 12px;
    }

    .tv-barcode-card{

        padding:26px;

        border-radius:28px;
    }

    .tv-barcode-card h2{

        font-size:34px;
    }

    .tv-barcode-card p{

        font-size:14px;
    }

    .tv-barcode-card input,
    .tv-barcode-card select{

        height:56px;

        font-size:15px;
    }

    .tv-barcode-card button{

        height:58px;

        font-size:16px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .tv-barcode-card{

        padding:22px;
    }

    .tv-barcode-card h2{

        font-size:28px;
    }

    .barcode-box{

        padding:18px;
    }

}