/* 
CS Gaming Hub - Main Stylesheet
2024
*/

/* Base Styles and Variables */
:root {
    --primary-color: #ff4655;
    --secondary-color: #1f2326;
    --tertiary-color: #0f1923;
    --accent-color: #52e9ff;
    --light-color: #f8f9fa;
    --dark-color: #111518;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f4f6f8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

section {
    padding: 5rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #e63e4c;
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.neon-button {
    position: relative;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    overflow: hidden;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: 
        0 0 5px var(--accent-color),
        0 0 25px rgba(82, 233, 255, 0.3);
    transition: var(--transition);
}

.neon-button:hover {
    color: var(--light-color);
    background: var(--accent-color);
    box-shadow: 
        0 0 5px var(--accent-color),
        0 0 25px var(--accent-color),
        0 0 50px var(--accent-color),
        0 0 100px rgba(82, 233, 255, 0.3);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
    max-height: 50px;
    margin-right: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    color: var(--light-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 25, 35, 0.8), rgba(15, 25, 35, 0.8)), url('images/1.jpg') no-repeat center center/cover;
    color: var(--light-color);
    padding: 8rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
}

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(15, 25, 35, 0.8), rgba(15, 25, 35, 0.8)), url('images/1.jpg') no-repeat center center/cover;
    color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--light-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: var(--light-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.skin-header {
    background: linear-gradient(rgba(15, 25, 35, 0.8), rgba(15, 25, 35, 0.8)), url('images/6.jpg') no-repeat center center/cover;
}

.dmarket-header {
    background: linear-gradient(rgba(15, 25, 35, 0.8), rgba(15, 25, 35, 0.8)), url('images/12.jpg') no-repeat center center/cover;
}

.about-header {
    background: linear-gradient(rgba(15, 25, 35, 0.8), rgba(15, 25, 35, 0.8)), url('images/15.jpg') no-repeat center center/cover;
}

.contact-header {
    background: linear-gradient(rgba(15, 25, 35, 0.8), rgba(15, 25, 35, 0.8)), url('images/16.jpg') no-repeat center center/cover;
}

/* Featured Posts */
.featured-posts {
    padding: 5rem 0;
    background-color: #fff;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.featured-posts h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Posts */
.blog-posts {
    background-color: #f9fafb;
}

.blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.post-meta {
    display: flex;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.post-meta .date {
    margin-right: 1.5rem;
}

.post-meta .category {
    background-color: rgba(82, 233, 255, 0.15);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.small-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Tip of the Day */
.tip-of-day {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
}

.tip-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tip-content h2 {
    color: var(--light-color);
    margin-bottom: 2rem;
}

.tip-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    background-color: var(--accent-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tip-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Newsletter */
.newsletter {
    background-color: #fff;
    padding: 4rem 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--gray-color);
}

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

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    outline: none;
}

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

/* Footer */
.footer {
    background-color: var(--tertiary-color);
    color: var(--light-color);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-links h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-social h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-link {
    font-size: 0.9rem;
    text-decoration: underline;
    color: var(--light-gray);
}

.cookie-link:hover {
    color: var(--primary-color);
}

/* Content Sections */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-wrapper.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.content-wrapper.reverse .text-content,
.content-wrapper.reverse .image-content {
    direction: ltr;
}

.text-content h2 {
    margin-bottom: 1.5rem;
}

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

/* Skin Categories Section */
.skin-categories {
    background-color: #f9fafb;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.category-header {
    padding: 1.5rem;
    color: #fff;
}

.category-header h3 {
    color: #fff;
    margin-bottom: 0;
}

.consumer-grade {
    background-color: #b0c3d9;
}

.industrial-grade {
    background-color: #5e98d9;
}

.mil-spec {
    background-color: #4b69ff;
}

.restricted {
    background-color: #8847ff;
}

.classified {
    background-color: #d32ce6;
}

.covert {
    background-color: #eb4b4b;
}

.category-content {
    padding: 1.5rem;
}

/* Collections Slider */
.collections-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.collection-card h3 {
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.collection-card p {
    padding: 0 1rem 1rem;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Investment Tips */
.investment-tips {
    list-style: none;
    margin-top: 1.5rem;
}

.investment-tips li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.investment-tips li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* DMarket Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon {
    background-color: rgba(82, 233, 255, 0.15);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Trading Guide Steps */
.steps-wrapper {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Safety Tips */
.safety-list {
    list-style: none;
    margin-top: 1.5rem;
}

.safety-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.safety-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Team Section */
.our-team {
    background-color: #f9fafb;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.25rem;
    padding: 0 1rem;
}

.team-member p {
    padding: 0 1rem;
    margin-bottom: 0.75rem;
    color: var(--gray-color);
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem 1.5rem;
}

.member-social a {
    color: var(--gray-color);
    transition: var(--transition);
}

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

/* Mission Section */
.mission-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-box {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.mission-icon {
    background-color: rgba(255, 70, 85, 0.15);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-box h3 {
    margin-bottom: 1rem;
}

.mission-box p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    background-color: rgba(82, 233, 255, 0.15);
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trust-item h3 {
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Contact Page */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.info-icon {
    background-color: rgba(255, 70, 85, 0.15);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-card h3 {
    margin-bottom: 1.5rem;
}

.info-card p {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.info-card a {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 5rem 0;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
}

form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(82, 233, 255, 0.15);
}

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

.checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.success-message {
    text-align: center;
}

.success-message svg {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.success-message h3 {
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.close-btn {
    margin-top: 1rem;
}

/* Social Media Section */
.follow-us {
    text-align: center;
    padding: 5rem 0;
    background-color: #f9fafb;
}

.follow-us h2 {
    margin-bottom: 1rem;
}

.follow-us p {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-card span {
    font-weight: 600;
}

.facebook {
    color: #1877f2;
}

.twitter {
    color: #1da1f2;
}

.instagram {
    color: #e1306c;
}

.discord {
    color: #7289da;
}

.youtube {
    color: #ff0000;
}

/* Article Page */
.article-header {
    background: linear-gradient(rgba(15, 25, 35, 0.8), rgba(15, 25, 35, 0.8)), url('images/1.jpg') no-repeat center center/cover;
    color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 2rem;
    font-size: 0.9rem;
}

.article-meta .category {
    background-color: rgba(82, 233, 255, 0.15);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.article-header h1 {
    color: var(--light-color);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.article-content {
    padding: 5rem 0;
}

.article-main {
    max-width: 800px;
}

.article-content .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
}

.featured-image {
    margin-bottom: 2rem;
}

.featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.article-body h2 {
    margin: 2.5rem 0 1.5rem;
}

.article-body h3 {
    margin: 2rem 0 1rem;
    color: var(--tertiary-color);
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.article-tags {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.article-tags span {
    margin-right: 1rem;
    font-weight: 600;
}

.article-tags a {
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    background-color: var(--light-gray);
    color: var(--gray-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.article-tags a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.article-share {
    margin-bottom: 3rem;
}

.article-share h3 {
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    color: #fff;
    transition: var(--transition);
}

.share-btn svg {
    margin-right: 0.5rem;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.reddit {
    background-color: #ff4500;
}

.share-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.author-bio {
    background-color: #f9fafb;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.author-info h4 {
    margin-bottom: 0.75rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-section {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.related-posts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-post {
    display: flex;
    gap: 1rem;
}

.sidebar-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.sidebar-post-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.sidebar-post-content .date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.sidebar-tip {
    text-align: left;
    padding: 1.5rem;
}

.sidebar-newsletter input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.sidebar-newsletter button {
    width: 100%;
}

.more-articles {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.more-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .content-wrapper, 
    .content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .share-buttons {
        flex-direction: column;
    }
}
