* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0F1E2B;
    --primary-blue: #1a3a52;
    --accent-purple: #9b59b6;
    --light-purple: #bb86fc;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #b0b0b0;
    --dark-bg: #0a1625;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-light);
}

.cookie-content a {
    color: var(--light-purple);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Header */
.header {
    background: var(--primary-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(187, 134, 252, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: var(--light-purple);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-purple);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--accent-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187, 134, 252, 0.4);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-dark);
}

.btn-large {
    padding: 15px 35px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(187, 134, 252, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--light-purple);
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Featured Section */
.featured-section {
    background: var(--dark-bg);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Top Picks */
.top-picks {
    background: var(--primary-dark);
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pick-card {
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(187, 134, 252, 0.1);
}

.pick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(187, 134, 252, 0.3);
}

.pick-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pick-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pick-card:hover .pick-img {
    transform: scale(1.1);
}

.pick-content {
    padding: 25px;
}

.pick-category {
    display: inline-block;
    background: var(--accent-purple);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pick-title {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.pick-description {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.pick-rating {
    color: var(--light-purple);
    font-weight: 600;
}

/* Why Us */
.why-us {
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--primary-dark);
    border-radius: 10px;
    transition: transform 0.3s;
    border: 1px solid rgba(187, 134, 252, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    background: var(--primary-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
    border: 1px solid rgba(187, 134, 252, 0.1);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 25px;
}

.review-title {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.review-text {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-gray);
}

.review-date {
    color: var(--light-purple);
}

/* Latest Buzz */
.latest-buzz {
    background: var(--dark-bg);
}

.buzz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.buzz-card {
    background: var(--primary-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
    border: 1px solid rgba(187, 134, 252, 0.1);
}

.buzz-card:hover {
    transform: translateY(-5px);
}

.buzz-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.buzz-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buzz-content {
    padding: 25px;
}

.buzz-date {
    color: var(--light-purple);
    font-size: 14px;
    font-weight: 500;
}

.buzz-title {
    font-size: 22px;
    color: var(--white);
    margin: 10px 0;
    font-weight: 600;
}

.buzz-text {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.buzz-link {
    color: var(--light-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.buzz-link:hover {
    color: var(--white);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    color: var(--white);
    padding: 80px 0;
}

.newsletter-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.newsletter-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: var(--white);
    color: var(--primary-dark);
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form button {
    padding: 15px 30px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(187, 134, 252, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-gray);
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--light-purple);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(187, 134, 252, 0.1);
    color: var(--text-gray);
}

/* Page Content */
.page-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
}

.page-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-content h3 {
    font-size: 24px;
    color: var(--light-purple);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 16px;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content a {
    color: var(--light-purple);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--white);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(187, 134, 252, 0.2);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    background: var(--primary-dark);
    color: var(--text-light);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons button {
        flex: 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .contact-form {
        padding: 25px;
    }
}

