@import url('https://fonts.cdnfonts.com/css/agency-fb'); /* yay it works :D */

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Agency FB';
}

.header {
    width: calc(100% - 40px);
    height: 400px;
    margin: 20px 20px 0 20px;
    background: linear-gradient(to right, black 50%, transparent 100%), url('nex.png');
    background-size: auto;
    background-position: right 0px;
    background-repeat: no-repeat;
    border-radius: 15px;
    border: 2px solid grey;
    display: flex;
    align-items: center;
    padding: 0 30px;
    color: white;
    box-sizing: border-box;
}

.header .left {
    flex: 1;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.header p {
    margin: 5px 0 0 0;
    font-size: 1.2em;
    color: #ccc;
}

.content {
    width: calc(100% - 40px);
    margin: 20px 20px 0 20px;
    display: flex;
    gap: 20px;
}

.box {
    flex: 1;
    min-width: 280px;
    height: auto;
    min-height: 200px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    color: white;
    box-sizing: border-box;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.box:hover::before {
    opacity: 1;
}

.box h2 {
    margin-top: 0;
    font-size: 1.6em;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.box ul {
    margin: 15px 0;
    padding-left: 20px;
    line-height: 1.8;
}

.box ul li {
    margin: 8px 0;
    color: #d0d0d0;
}

.box p {
    margin: 10px 0;
    color: #b0b0b0;
    line-height: 1.7;
}