
    @import url('inline-font1_1.1000&display=swap');

    * {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Poppins", sans-serif;
        margin: 0;
        padding: 0;
        background-image: linear-gradient(to top, rgb(43 105 183, 1) 0%, rgb(31 76 132 / 65%) 50%);
        background-attachment: fixed;
        color: #333;
        background-color: #000;
    }
    header {
        text-align: center;
        padding: 30px 15px;
        background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(81, 86, 157, 0.1) 100%);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 122, 255, 0.2);
        margin-bottom: 30px;
        border-bottom: 2px solid rgba(0, 122, 255, 0.3);
        position: relative;
        overflow: hidden;
    }

    header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
        animation: headerPulse 8s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes headerPulse {
        0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
        50% { transform: translate(10px, 10px) scale(1.1); opacity: 0.8; }
    }

    header img {
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.4));
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    header img:hover {
        transform: translateY(-5px) scale(1.05);
        filter: drop-shadow(0 8px 20px rgba(0, 122, 255, 0.6));
    }
    article {
        max-width: 800px;
        margin: auto;
        padding: 30px 15px;
        color: #fff;
        line-height: 1.8;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    p {
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        font-size: 1.05em;
    }

    ul, ol {
        margin: 20px 0;
        padding-left: 30px;
    }

    li {
        margin-bottom: 12px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        line-height: 1.7;
    }

    li::marker {
        color: #007aff;
    }

    
    img{
        max-width: 100%;
        height: auto;
    }
    h1 {
        text-align: center;
        text-transform: uppercase;
        text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 122, 255, 0.4);
        background: linear-gradient(135deg, #fff 0%, #a8d8ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.2em;
        margin: 30px 0;
        letter-spacing: 1px;
        animation: titleGlow 3s ease-in-out infinite;
    }

    @keyframes titleGlow {
        0%, 100% { filter: brightness(1); }
        50% { filter: brightness(1.2); }
    }

    h2 {
        color: #4db8ff;
        text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
        border-left: 4px solid #007aff;
        padding-left: 15px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.8em;
    }

    h3 {
        color: #7fcfff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.4em;
    }
    footer {
        background: linear-gradient(180deg, rgba(0, 122, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
        border-top: solid 2px rgba(77, 184, 255, 0.5);
        text-align: center;
        color: #4db8ff;
        padding: 30px 15px;
        font-size: 0.95em;
        margin-top: 50px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
    }

    footer p {
        margin: 0;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        letter-spacing: 0.5px;
    }
    .buttons {
        margin: 10%;
        text-align: center;
    }

    .btn-hover {
        width: 240px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        margin: 20px 30px 20px;
        height: 55px;
        text-align:center;
        border: none;
        background-size: 300% 100%;

        border-radius: 50px;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-hover:hover {
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-hover:focus {
        outline: none;
    }
    .btn-hover.color-9 {
        background-image: linear-gradient(to right, #007aff, #51569da6, #007aff, #007aff);
        box-shadow: 0 8px 25px 0 rgba(65, 132, 234, 0.6), 0 0 30px rgba(0, 122, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 25px auto;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }

    .btn-hover.color-9::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-hover.color-9:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-hover.color-9:hover {
        box-shadow: 0 12px 35px 0 rgba(65, 132, 234, 0.9), 0 0 50px rgba(0, 122, 255, 0.5);
        transform: translateY(-3px);
    }
    a {
        color: #ff5eea;
        font-weight: bold;
        text-decoration: none;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    a:hover {
        color: #ff8bf5;
        text-shadow: 0 0 8px rgba(255, 94, 234, 0.6);
    }

    table {
        border-collapse: collapse;
        width: 100%;
        margin: 30px 0;
        background: rgba(0, 122, 255, 0.05);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    table, th, td {
        border: 1px solid rgba(77, 184, 255, 0.3);
    }

    th {
        padding: 15px;
        text-align: left;
        background: linear-gradient(135deg, rgba(0, 122, 255, 0.3) 0%, rgba(81, 86, 157, 0.3) 100%);
        color: #4db8ff;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    td {
        padding: 12px 15px;
        text-align: left;
        transition: background 0.3s ease;
    }

    tr:hover td {
        background: rgba(0, 122, 255, 0.1);
    }

    blockquote {
        margin: 30px 0;
        padding: 20px 25px 20px 70px;
        background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(81, 86, 157, 0.1) 100%);
        border-left: 5px solid #007aff;
        border-radius: 10px;
        position: relative;
        font-style: italic;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    blockquote::before {
        content: '"';
        position: absolute;
        left: 20px;
        top: 10px;
        font-size: 4em;
        color: rgba(0, 122, 255, 0.3);
        font-family: Georgia, serif;
        line-height: 1;
    }

    blockquote p {
        margin-bottom: 10px;
    }

    cite {
        display: block;
        margin-top: 15px;
        color: #4db8ff;
        font-style: normal;
        font-weight: 600;
        text-align: right;
    }
  
    