body {
    background-image: linear-gradient(to bottom, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 90%), url("../assets/seamless-dark.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pheonix-cpu-section .cpu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: white;
    font-family: "Inter", sans-serif;
}

.cpu-header {
    text-align: center;
    margin-bottom: 50px;
}

.cpu-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.cpu-meta {
    font-size: 1rem;
    color: #aaaaaa;
}

.cpu-main {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cpu-hardware-c, .cpu-summary-c {
    margin: 20px 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 25px;
    flex: 1;
    width: 200px;
    background-color: #ffffff18;
    backdrop-filter: blur(12px);
    color: white;
    transition: transform 0.3s ease-in-out;
}

.cpu-hardware-c:hover, .cpu-summary-c:hover {
    transform: scale(1.03);
}

.cpu-hardware ul {
    list-style: disc inside;
    line-height: 1.6;
}

.cpu-summary-c p {
    line-height: 1.6;
}

.cpu-innovation-c {
    margin: 20px 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 25px;
    background-color: #ffffff18;
    backdrop-filter: blur(12px);
    color: white;
    transition: transform 0.3s ease-in-out;
}

.cpu-innovation-c:hover {
    transform: scale(1.03);
}

.cpu-innovation-c h2 {
    margin-bottom: 20px;
}

.cpu-architecture-info-c {
    margin: 20px 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 25px;
    background-color: #ffffff18;
    backdrop-filter: blur(12px);
    color: white;
    transition: transform 0.3s ease-in-out;
}

.cpu-architecture-info-c:hover {
    transform: scale(1.03);
}

.cpu-architecture-info-c h2 {
    margin-bottom: 20px;
}

.cpu-meta a {
    color: #4cafff;
    text-decoration: none;
    transition: all 0.2s ease-in-out
}

.cpu-meta a:hover {
    font-size: 18px;
}