/* Global Styles */
:root {
    --primary-color: #E63946;
    --secondary-color: #1D3557;
    --light-color: #F1FAEE;
    --dark-color: #1D3557;
    --accent-color: #457B9D;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: var(--light-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 100vh;
    margin-top: -56px;
    padding-top: 56px;
    position: relative;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.discount-badge {
    margin: 2rem 0;
}

.badge {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Price Comparison Table */
.table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.table thead th {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Trust Elements */
.trust-element {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
}

.trust-element i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.trust-element h4 {
    color: var(--secondary-color);
    margin: 1rem 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }

    .feature-card, .trust-element {
        margin-bottom: 1rem;
    }
}

/* SEO Optimizations */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.product-category {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
}

.product-category h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Responsive Product Cards */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-card h4 {
        min-height: auto;
    }
}

/* Product Image Hover Effect */
.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Buy Button Animation */
.product-card .btn-primary {
    transition: all 0.3s ease;
}

.product-card:hover .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.accordion-button {
    font-weight: 600;
    color: var(--secondary-color);
    background-color: white;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--light-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    background-color: white;
    line-height: 1.7;
}

/* SEO Text Styles */
.seo-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin: 2rem 0;
}

.seo-text h2, .seo-text h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.seo-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.seo-text li {
    margin-bottom: 0.5rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--secondary-color);
}

.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Game Highlights Section */
.game-highlights {
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.highlight-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.highlight-image:hover {
    transform: translateY(-5px);
}

.highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.highlight-content {
    padding: 2rem;
}

.highlight-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Enhanced Product Cards */
.product-card {
    background: linear-gradient(to bottom, #ffffff 0%, var(--light-color) 100%);
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-card img {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.product-card .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Enhanced Trust Elements */
.trust-element {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.trust-element i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.trust-element:hover i {
    transform: scale(1.1);
}

.trust-element h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.trust-element p {
    font-size: 1.1rem;
    color: var(--dark-color);
    opacity: 0.9;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(230,57,70,0.3) 0%, rgba(29,53,87,0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Price Comparison Table */
.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-table thead th {
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem;
    font-weight: 600;
    border: none;
}

.comparison-table tbody td {
    padding: 1.2rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table .list-unstyled li {
    margin-bottom: 0.5rem;
}

.comparison-table .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Feature Boxes */
.feature-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.feature-box h3 i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-color);
}

.feature-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.specs-box {
    background: var(--light-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.specs-box h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .feature-box {
        margin-bottom: 1.5rem;
    }
    
    .specs-box {
        padding: 1rem;
    }
} 