* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
     background: linear-gradient(
        135deg,
        #000000,
        #181446,
        #000000
    );
    background-size: 300% 300%;
    animation: glossyMove 12s ease infinite;

    position: relative;
    overflow: hidden;
}
.container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.08),
        rgba(255, 250, 250, 0),
        rgba(0, 0, 0, 0.08)
    );
    opacity: 0.6;
    pointer-events: none;
}

@keyframes glossyMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container header {
    background: transparent;
    width: 100%;
    font-size: 20px;
    height: 60px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    color: rgb(0, 238, 255);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: oblique;
    font-weight: 600;
}
.container header h4 {
    margin-right: auto;
    cursor: pointer;
}
.container header h4:hover {
    color: rgb(251, 255, 0);
}

.container header .nav-btn {
    background-color: transparent;
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande',
                 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-radius: 7px;
    padding: 4px 8px;
    margin-left: 10px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 10px;
    transition: color 0.3s ease,
                box-shadow 0.3s ease,
                transform 0.2s ease;
}

.container header .nav-btn:hover {
    color: rgb(255, 0, 242);
    box-shadow: 0 4px 12px rgb(0, 247, 255);
    transform: translateY(-1px);
}

.information {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    text-align: left;   
}
.information h1{
    color: #ffffff;
    font-size: 42px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
}
.information h3 {
    color: #ffd700;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    font-style:oblique;
}
.information p {
    color: #dcdcdc;
    font-size: 16px;
    line-height: 1.7;
}
.container footer {
    background-color: transparent;
    color: white;
    width: 100%;
    height: 40px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 200;
    font-size: 12px;
}
.info-extras {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    padding: 12px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
     cursor: pointer;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.feature:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(241, 0, 241, 0.801);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.stats div {
    text-align: center;
}

.stats span {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
}

.stats p {
    color: #cfcfcf;
    font-size: 14px;
}
