/* 
   CS Gaming Hub Styles
   Modern, responsive design for CS2 skins blog
*/

/* Base Styles & Variables */
:root {
    --primary-color: #ff6b4a;
    --secondary-color: #4e54ff;
    --dark-color: #1a1a2e;
    --light-color: #f8f8f8;
    --text-color: #333333;
    --light-text: #ffffff;
    --gray-color: #757575;
    --light-gray: #e0e0e0;
    --border-color: #dddddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    
    --consumer-grade: #b0c3d9;
    --industrial-grade: #5e98d9;
    --mil-spec: #4b69ff;
    --restricted: #8847ff;
    --classified: #d32ce6;
    --covert: #eb4b4b;
    --extraordinary: #ffae39;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #ff9e4a);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #6979ff);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-sm: 4px;
}

/* Reset & Global Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    color: var(--light-text);
}

.btn-secondary {
    background: var(--gradient-secondary);
}

.btn-tertiary {
    background: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    color: var(--dark-color);
    background: var(--light-gray);
}

/* Header */
header {
    background-color: var(--dark-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('images/1.jpg') no-repeat center center/cover;
    color: var(--light-text);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Introduction Story */
.intro-story {
    padding: 80px 0;
    background-color: var(--light-color);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.story-image {
    flex: 1;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
}

/* Featured Posts */
.featured-posts {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.read-more {
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: var(--light-text);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: var(--gradient-secondary);
    color: var(--light-text);
    text-align: center;
}

.newsletter h2 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 30px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links h3, .footer-legal h3, .footer-contact h3 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after, .footer-legal h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li, .footer-legal ul li, .footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-legal ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links ul li a:hover, .footer-legal ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.social-links a {
    color: var(--light-text);
    margin-left: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-content h3 {
    color: var(--light-text);
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.cookie-more-info {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-more-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-posts {
    padding: 80px 0;
}

.blog-search {
    margin-bottom: 40px;
}

.blog-search form {
    display: flex;
    max-width: 500px;
    margin-bottom: 20px;
}

.blog-search input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.blog-search button {
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.blog-categories span {
    font-weight: 600;
}

.category-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--light-gray);
    border-radius: 30px;
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.category-tag:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.blog-post {
    display: flex;
    margin-bottom: 60px;
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-post .post-image {
    flex: 0 0 40%;
}

.blog-post .post-image img {
    height: 100%;
    object-fit: cover;
}

.blog-post .post-content {
    flex: 1;
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
}

/* Skins Page Styles */
.skins-intro {
    padding: 80px 0;
}

.skins-intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.skins-intro-text {
    flex: 1;
}

.skins-intro-image {
    flex: 1;
}

.skins-intro-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.skin-categories {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 20px 20px 10px;
}

.category-card p {
    padding: 0 20px 20px;
    color: var(--gray-color);
}

.category-card .read-more {
    padding: 0 20px 20px;
}

.skin-qualities {
    padding: 80px 0;
}

.qualities-content {
    display: flex;
    gap: 40px;
}

.qualities-image {
    flex: 1;
}

.qualities-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.qualities-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.quality-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.quality-card h3 {
    margin-bottom: 15px;
}

.rarity-list li, .wear-list li, .attribute-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.consumer-grade .dot { background-color: var(--consumer-grade); }
.industrial-grade .dot { background-color: var(--industrial-grade); }
.mil-spec .dot { background-color: var(--mil-spec); }
.restricted .dot { background-color: var(--restricted); }
.classified .dot { background-color: var(--classified); }
.covert .dot { background-color: var(--covert); }
.extraordinary .dot { background-color: var(--extraordinary); }

.factory-new .dot { background-color: #5cd65c; }
.minimal-wear .dot { background-color: #a5d65c; }
.field-tested .dot { background-color: #d6c75c; }
.well-worn .dot { background-color: #d6975c; }
.battle-scarred .dot { background-color: #d65c5c; }

.attribute-list li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.price-factors {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.factor-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.factor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.factor-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.collection-showcase {
    padding: 80px 0;
}

.collection-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.collection-slide {
    position: relative;
}

.collection-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--light-text);
}

.collection-info h3 {
    color: var(--light-text);
    margin-bottom: 5px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--light-text);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.investment-tips {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.tips-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tips-text {
    flex: 1;
}

.tips-image {
    flex: 1;
}

.tips-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.tips-list li {
    display: flex;
    margin-bottom: 20px;
}

.tips-list li i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.tips-list li h3 {
    margin-bottom: 5px;
}

.price-tracker {
    padding: 80px 0;
}

.tracker-content {
    margin-top: 40px;
}

.tracker-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tracker-filters select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    flex: 1;
}

.price-table-container {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.price-table td img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.price-up {
    color: var(--success-color);
}

.price-down {
    color: var(--error-color);
}

.price-disclaimer {
    margin-top: 15px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Marketplace Page Styles */
.marketplace-intro {
    padding: 80px 0;
}

.marketplace-intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.marketplace-intro-text {
    flex: 1;
}

.marketplace-intro-image {
    flex: 1;
}

.marketplace-intro-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.marketplace-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    padding: 10px 15px;
    border-radius: 30px;
}

.badge i {
    color: var(--primary-color);
    margin-right: 8px;
}

.how-it-works {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: var(--gradient-primary);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.fee-structure {
    padding: 80px 0;
}

.fee-content {
    display: flex;
    gap: 40px;
}

.fee-table-container {
    flex: 1;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th, .fee-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.fee-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.fee-info {
    flex: 1;
}

.fee-comparison {
    margin-bottom: 30px;
}

.marketplace {
    margin-bottom: 15px;
}

.marketplace-name {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.fee-bar {
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 10px;
    position: relative;
    color: var(--light-text);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.level-benefits ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.payment-methods {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.method-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.method-card h3 {
    padding: 20px 20px 10px;
}

.method-card p {
    padding: 0 20px 20px;
    color: var(--gray-color);
}

.security-features {
    padding: 80px 0;
}

.security-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.security-image {
    flex: 1;
}

.security-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.security-list {
    flex: 1;
}

.security-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.security-icon {
    background: var(--light-gray);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.security-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.security-info h3 {
    margin-bottom: 5px;
}

.trading-tips {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pros-cons {
    padding: 80px 0;
}

.pros-cons-container {
    display: flex;
    gap: 40px;
}

.pros, .cons {
    flex: 1;
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.pros h3, .cons h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pros h3 i {
    color: var(--success-color);
    margin-right: 10px;
}

.cons h3 i {
    color: var(--error-color);
    margin-right: 10px;
}

.pros ul, .cons ul {
    list-style: disc;
    padding-left: 20px;
}

.pros ul li, .cons ul li {
    margin-bottom: 10px;
}

.user-ratings {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.ratings-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.rating-score {
    flex: 0 0 200px;
    text-align: center;
}

.score {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.stars {
    color: var(--warning-color);
    margin: 10px 0;
}

.total-reviews {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
}

.rating-label i {
    color: var(--warning-color);
    margin-left: 5px;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin: 0 15px;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
}

.rating-percent {
    flex: 0 0 50px;
    text-align: right;
}

.user-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-rating {
    color: var(--warning-color);
    margin-top: 5px;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-secondary {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    background-color: #7289da;
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 10px;
    transition: var(--transition);
}

.discord-link:hover {
    background-color: #5f73bc;
    color: var(--light-text);
}

.discord-link i {
    font-size: 1.2rem;
    margin-right: 8px;
    margin-bottom: 0;
    color: var(--light-text);
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.form-container {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
    margin-right: 10px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
}

.map-section {
    padding: 80px 0;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.location-map {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    opacity: 0;
    transition: var(--transition);
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-overlay p {
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-body i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-btn {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .posts-grid, .category-grid, .factors-grid, .methods-grid, .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content, .qualities-content, .tips-content, .fee-content, .security-content, .pros-cons-container {
        flex-direction: column;
    }
    
    .collection-slide img {
        height: 300px;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-post .post-image {
        flex: none;
    }
    
    .blog-post .post-image img {
        height: 250px;
    }
    
    .user-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--dark-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .posts-grid, .category-grid, .factors-grid, .methods-grid, .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .ratings-summary {
        flex-direction: column;
    }
    
    .tracker-filters {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}
