* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Gaming Style */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 1.2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(120, 119, 198, 0.3);
    border-bottom: 2px solid #7877c6;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7877c6, #ff77c6, #78dbff, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.8), 0 0 20px rgba(120, 119, 198, 0.4);
    font-family: 'Courier New', monospace;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo a {
    background: linear-gradient(45deg, #7877c6, #ff77c6, #78dbff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    flex: 1;
    min-width: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li::before {
    display: none;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

a {
    text-decoration: none;
    color: #78dbff;
    transition: all 0.3s;
}

a:hover {
    color: #ff77c6;
    text-shadow: 0 0 8px rgba(255, 119, 198, 0.5);
}

a:visited {
    color: #7877c6;
}

a:focus {
    outline: 2px solid #7877c6;
    outline-offset: 2px;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #7877c6;
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover {
    color: #fff;
    background: rgba(120, 119, 198, 0.2);
    box-shadow: 0 0 10px rgba(120, 119, 198, 0.4);
}

nav a:hover::before {
    width: 80%;
}

nav a.active {
    color: #fff;
    background: rgba(120, 119, 198, 0.3);
    box-shadow: 0 0 15px rgba(120, 119, 198, 0.6);
    border: 1px solid #7877c6;
}

nav a.active::before {
    width: 80%;
    background: #ff77c6;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    margin-top: 80px;
}

.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(120, 119, 198, 0.2);
    border: 1px solid rgba(120, 119, 198, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
}

.page-header p {
    color: #b0b0b0;
    position: relative;
    z-index: 1;
}

/* Comparison Table - Gaming Style */
.comparison-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    position: relative;
}

.comparison-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7877c6, #ff77c6, #78dbff, #7877c6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(10, 10, 10, 0.6);
    border-radius: 8px;
    overflow: hidden;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
}

.comparison-table th {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #7877c6;
    text-shadow: 0 0 5px rgba(120, 119, 198, 0.5);
}

.comparison-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(120, 119, 198, 0.2);
    color: #d0d0d0;
}

.comparison-table a {
    color: #78dbff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.comparison-table a:hover {
    color: #ff77c6;
    background: rgba(255, 119, 198, 0.1);
    text-shadow: 0 0 8px rgba(255, 119, 198, 0.5);
}

.comparison-table tr:nth-child(even) {
    background: rgba(120, 119, 198, 0.05);
}

.comparison-table tr:hover {
    background: rgba(120, 119, 198, 0.15);
    box-shadow: inset 0 0 10px rgba(120, 119, 198, 0.2);
}

.criteria-block {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    padding: 1.8rem;
    margin: 1.5rem 0;
    border-left: 4px solid #78dbff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(120, 219, 255, 0.2);
    border: 1px solid rgba(120, 219, 255, 0.3);
}

.criteria-block h3 {
    color: #78dbff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(120, 219, 255, 0.5);
}

.suitable-block {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    padding: 1.8rem;
    margin: 1.5rem 0;
    border-left: 4px solid #ff77c6;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 119, 198, 0.2);
    border: 1px solid rgba(255, 119, 198, 0.3);
}

.suitable-block h3 {
    color: #ff77c6;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 119, 198, 0.5);
}

/* Review Examples */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.review-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(155, 89, 182, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.4);
    border-left: 4px solid #9b59b6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(155, 89, 182, 0.5);
}

.review-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.review-card .game-title {
    color: #78dbff;
    font-weight: bold;
    margin: 0.5rem 0;
    text-shadow: 0 0 8px rgba(120, 219, 255, 0.5);
}

/* FAQ */
.faq-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.faq-item {
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(120, 119, 198, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #7877c6;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(120, 119, 198, 0.5);
}

/* Form */
.form-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(10, 10, 10, 0.6);
    color: #e0e0e0;
    transition: all 0.3s;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7877c6;
    box-shadow: 0 0 15px rgba(120, 119, 198, 0.4), inset 0 0 10px rgba(120, 119, 198, 0.1);
    background: rgba(10, 10, 10, 0.8);
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #d0d0d0;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #7877c6;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 4px;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #7877c6;
    border-color: #7877c6;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid #7877c6;
    outline-offset: 2px;
}

.checkbox-label span {
    flex: 1;
    color: #d0d0d0;
}

.checkbox-label a {
    color: #78dbff;
    text-decoration: none;
}

.checkbox-label a:hover {
    color: #ff77c6;
}

.btn {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 119, 198, 0.6);
}

.btn:active {
    transform: translateY(0);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.success-message {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e0e0e0;
    padding: 2.5rem 0 0 0;
    margin-top: 3rem;
    border-top: 2px solid #7877c6;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

footer h3 {
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

footer a:hover {
    color: #7877c6;
    text-shadow: 0 0 8px rgba(120, 119, 198, 0.5);
    transform: translateX(5px);
}

.footer-copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(120, 119, 198, 0.3);
}

.footer-copyright p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    border-top: 2px solid #7877c6;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner p {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.cookie-btn.reject {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.cookie-btn.preferences {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
    z-index: 2000;
    display: none;
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Images */
.game-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(120, 119, 198, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Text Styling */
p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h2 {
    color: #7877c6;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
    margin-top: 2rem;
}

/* Lists Styling */
ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 0;
}

ul li, ol li {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    position: relative;
}

ul li {
    list-style: none;
}

ul li::before {
    content: '▸';
    color: #7877c6;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    text-shadow: 0 0 5px rgba(120, 119, 198, 0.5);
}

ol li {
    list-style: decimal;
    list-style-position: inside;
    padding-left: 0;
}

/* Responsive Tables */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
}

.comparison-table {
    min-width: 600px;
}

/* Desktop/Tablet adjustments */
@media (min-width: 769px) and (max-width: 1200px) {
    nav ul {
        gap: 0.75rem;
    }
    
    nav a {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .table-wrapper {
        margin: 1rem -20px;
        padding: 0 20px;
    }
    
    .comparison-table {
        display: block;
        width: 100%;
        min-width: auto;
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .comparison-table tbody {
        display: block;
        width: 100%;
    }
    
    .comparison-table tr {
        display: block;
        margin-bottom: 1rem;
        background: rgba(26, 26, 46, 0.9);
        border-radius: 8px;
        padding: 1rem;
        border: 1px solid rgba(120, 119, 198, 0.3);
    }
    
    .comparison-table td {
        display: block;
        text-align: left;
        padding: 0.75rem 0;
        border: none;
        border-bottom: 1px solid rgba(120, 119, 198, 0.2);
    }
    
    .comparison-table td:last-child {
        border-bottom: none;
    }
    
    .comparison-table td:first-child {
        font-weight: bold;
        color: #7877c6;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid rgba(120, 119, 198, 0.3);
    }
    
    .comparison-table td:not(:first-child)::before {
        content: attr(data-label) ': ';
        font-weight: bold;
        color: #78dbff;
        display: inline;
        margin-right: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    header .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    nav.active {
        max-height: 500px;
        opacity: 1;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        list-style: none;
    }
    
    nav ul li {
        width: 100%;
        list-style: none;
    }
    
    nav ul li::before {
        display: none;
    }
    
    nav a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(120, 119, 198, 0.2);
        font-size: 0.95rem;
    }
    
    nav a:hover {
        background: rgba(120, 119, 198, 0.2);
    }
    
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    main {
        margin-top: 70px;
    }
}

/* Mobile Small (375px and below) */
@media (max-width: 375px) {
    header {
        padding: 1rem 0;
    }
    
    header .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .logo a {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.3rem;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    nav {
        top: 60px;
    }
    
    nav a {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    main {
        margin-top: 60px;
    }
    
    .page-header {
        padding: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .comparison-section {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
}
