*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    background:#0f172a;

    color:white;

    font-family:Inter,sans-serif;

}

.container{

    width:min(1400px,95%);

    margin:auto;

    padding:40px;

}

.hero{

    text-align:center;

    margin-bottom:60px;

}

.hero p{

    margin-top:18px;

    color:#CBD5E1;

}

.compare-search{

    display:grid;

    grid-template-columns:1fr auto 1fr;

    gap:50px;

    align-items:center;

    margin-top:50px;

}

.button-area button{

    background:linear-gradient(

        135deg,

        #2563EB,

        #60A5FA

    );

    color:white;

    padding:18px 50px;

    border:none;

    border-radius:16px;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.button-area button:hover{

    transform:translateY(-3px);

    box-shadow:

        0 15px 35px rgba(37,99,235,.35);

}

.player-input{

    background:white;

    border-radius:22px;

    padding:30px;

    box-shadow:

        0 15px 45px rgba(0,0,0,.15);

}

.player-input input{

    width:100%;

    padding:18px;

    border-radius:14px;

    border:2px solid #E2E8F0;

    font-size:18px;

    transition:.3s;

}

.player-input input:focus{

    outline:none;

    border-color:#3B82F6;

}

.player-input label{

    display:block;

    margin-bottom:15px;

    font-size:18px;

    font-weight:700;

    color:#1E3A8A;

}

.player-preview{

    background:white;

    color:#1f2937;

    border-radius:24px;

    padding:30px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.player-preview h2{

    color:#2563EB;

    margin-bottom:15px;

}

.player-preview p{

    margin:8px 0;

    font-size:18px;

}

.vs{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#3B82F6;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:bold;

    box-shadow:

        0 10px 30px rgba(59,130,246,.35);

}

.vs-big{

    width:120px;

    height:120px;

    border-radius:50%;

    background:#2563EB;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    font-weight:bold;

}

.button-area{

    text-align:center;

    margin:40px;

}

#comparison-results{

    margin-top:80px;

    display:grid;

    gap:35px;

}

.hero-icon{

    font-size:70px;

    margin-bottom:20px;

}

.hero h1{

    font-size:58px;

    font-weight:800;

    color:#60A5FA;

}

.comparison-header{

    display:grid;

    grid-template-columns:1fr auto 1fr;

    gap:40px;

    align-items:center;

}

.comparison-overview{

    margin-top:60px;

}

.comparison-overview h2{

    text-align:center;

    margin-bottom:35px;

}

.stat-card{

    background:white;

    color:#1f2937;

    padding:25px;

    border-radius:20px;

    margin-bottom:25px;

}

.bar-row{

    display:flex;

    align-items:center;

    gap:20px;

    margin:15px 0;

}

.bar{

    flex:1;

    height:14px;

    background:#E5E7EB;

    border-radius:20px;

    overflow:hidden;

}

.fill{

    height:100%;

    border-radius:20px;

}

.blue{

    background:#3B82F6;

}

.green{

    background:#10B981;

}

#comparison-charts{

    margin-top:60px;

    display:grid;

    gap:35px;

}

.chart-card{

    background:white;

    border-radius:20px;

    padding:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.chart-card h2{

    color:#1f3c88;

    margin-bottom:25px;

}

.chart-card canvas{

    height:350px !important;

}

