/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Dark theme for AMD */
    color: #f5f5f5;
    padding-top: 130px; /* Ensures content is not hidden behind the fixed header */
    text-align: center;
}

header {
    background: linear-gradient(135deg, #991f00, #ff4500);
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    top: 100px; /* Avoid overlap with header */
    width: 100%;
    z-index: 1000;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(255, 69, 0, 0.5);

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background-color: #ff5722;
    border-radius: 5px;
}



/* Main Content Box (One Box Around All Sections with Shadow) */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 50px auto 50px auto;
    background: #d02b02;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.5); /* AMD Red Shadow Effect */
    border-radius: 15px; /* Rounded corners */
}

/* Section Titles */
h2 {
    color: #5a0b02;
    font-size: 28px;
    margin-bottom: 15px;
}


/* Benchmark Table */
.benchmark-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #2c2c2c;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.benchmark-section th, 
.benchmark-section td {
    border: 1px solid #ff4500;
    padding: 10px;
    text-align: left;
}

.benchmark-section th {
    background: #ff4500;
    color: white;
}

.benchmark-section tr:nth-child(even) {
    background: #1a1a1a;
}

/* Cards */
.processors-section .card {
    background: #222;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(255, 69, 0, 0.5);
    border-left: 5px solid #ff4500;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #991f00, #ff4500);
    color: white;
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    border-top: 3px solid #991f00;
}
