/* Custom fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #0a192f;
    --accent: #ffd700;
    --accent-hover: #e6c200;
    --text-white: #ffffff;
    --text-muted: #8892b0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

/* Header */
header {
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    text-align: center;
}

.badge {
    background: var(--accent);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.rating {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Comparison Table */
.review-summary {
    margin: 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.summary-item:last-child {
    border-bottom: none;
}

.check { color: #00ff00; margin-right: 0.5rem; }

/* Product Image Styling */
.product-image {
    width: 100%;
    max-width: 320px;
    margin: 2rem auto;
    position: relative;
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.5s ease;
}

.product-image:hover img {
    transform: translateY(-10px) scale(1.02);
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(8px);
}

/* Content Sections */
section {
    margin: 3rem 0;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

/* Final CTA */
.cta-box {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,215,0,0.05));
    border: 1px solid var(--accent);
}

.btn-main {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
    animation: pulse 2s infinite;
}

.btn-main:hover {
    transform: translateY(-3px);
    background: var(--accent-hover);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    .btn-main { width: 100%; font-size: 1rem; }
}
