body{
    margin:0;
    font-family:"Segoe UI",sans-serif;
    
    background:linear-gradient(180deg,#020617,#020617,#071226);
    
    color:#e5e7eb;
    }
    
    
    /* header */
    
    header{
    padding:60px 10%;
    }
    
    .section-title{
    color:#ef4444;
    letter-spacing:3px;
    }
    
    .section-main{
    
    font-size:42px;
    font-weight:bold;
    
    background:linear-gradient(90deg,#38bdf8,#ef4444);
    
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    }
    
    .section-sub{
    color:#94a3b8;
    margin-top:10px;
    }
    
    
    /* container */
    
    .container{
    padding:60px 10%;
    }
    
    
    /* tabs */
    
    .tabs{
    margin-bottom:30px;
    }
    
    .tab-button{
    
    padding:12px 25px;
    margin-right:10px;
    
    background:#0f172a;
    
    color:#e5e7eb;
    
    border:1px solid #1e293b;
    
    border-radius:8px;
    
    cursor:pointer;
    
    transition:0.3s;
    }
    
    .tab-button:hover{
    
    border-color:#ef4444;
    
    }
    
    .tab-button.active{
    
    background:linear-gradient(90deg,#0ea5e9,#ef4444);
    
    border:none;
    }
    
    
    /* content */
    
    .tab-content{
    
    display:none;
    
    background:linear-gradient(135deg,#0f172a,#1f0a0a);
    
    padding:30px;
    
    border-radius:12px;
    
    border:1px solid #3f1d1d;
    }
    
    .tab-content.active{
    display:block;
    }
    
    
    /* table */
    
    .info-table{
    
    width:100%;
    
    border-collapse:collapse;
    }
    
    .info-table td{
    
    padding:12px;
    
    border-bottom:1px solid #1e293b;
    }
    
    .info-table td:first-child{
    
    color:#94a3b8;
    width:300px;
    }
    
    
    /* highlight */
    
    .highlight{
    
    font-size:24px;
    
    font-weight:bold;
    
    color:#38bdf8;
    
    margin-bottom:20px;
    }
    
    
    /* note */
    
    .note{
    color:#94a3b8;
    margin-top:10px;
    }
    
    
    /* link */
    
    .stock-link{
    
    display:inline-block;
    
    margin-top:20px;
    
    padding:12px 25px;
    
    background:linear-gradient(90deg,#0ea5e9,#ef4444);
    
    color:white;
    
    text-decoration:none;
    
    border-radius:8px;
    
    transition:0.3s;
    }
    
    .stock-link:hover{
    
    transform:translateY(-3px);
    
    box-shadow:0 0 10px rgba(239,68,68,0.4);
    
    }
    
    
    /* back button */
    
    .back-button{
    
    display:inline-block;
    
    margin-top:40px;
    
    padding:12px 25px;
    
    background:linear-gradient(90deg,#0ea5e9,#ef4444);
    
    color:white;
    
    text-decoration:none;
    
    border-radius:8px;
    
    }