/* Base Styles and Variables */
:root {
    --primary-color: #6d4aff;
    --primary-dark: #5036cc;
    --primary-light: #9b85ff;
    --secondary-color: #ff8a3d;
    --secondary-dark: #e67325;
    --secondary-light: #ffa968;
    --accent-color: #00c2ff;
    --dark-color: #1a1a2e;
    --darker-color: #16161f;
    --light-color: #e6e6e6;
    --lighter-color: #f8f8f8;
    --text-color: #333;
    --text-light: #666;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--lighter-color);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.custom-frame {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.custom-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: calc(var(--border-radius) + 3px);
    opacity: 0.7;
}

.custom-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: -1;
    border-radius: var(--border-radius);
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--dark-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    transform: scaleX(1);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links li a:hover::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    background: var(--gradient-dark);
    color: var(--light-color);
    gap: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    text-align: left;
}

.hero-content h2:after {
    left: 0;
    transform: none;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-dark);
    box-shadow: var(--hover-shadow);
    transform: translateY(-2px);
    color: white;
}

/* Quote Section */
.quote-section {
    background-color: var(--lighter-color);
    padding: 3rem 2rem;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quote-container blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
}

.quote-container blockquote::before,
.quote-container blockquote::after {
    content: '"';
    color: var(--primary-light);
    font-size: 3rem;
    position: absolute;
    opacity: 0.3;
}

.quote-container blockquote::before {
    top: -20px;
    left: -10px;
}

.quote-container blockquote::after {
    content: '"';
    bottom: -40px;
    right: -10px;
}

.quote-author {
    font-weight: 600;
    color: var(--text-light);
}

/* Featured Posts Section */
.featured-posts {
    padding: 5rem 2rem;
    background-color: white;
}

.featured-posts h2 {
    margin-bottom: 3rem;
}

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

.post-card {
    background: var(--lighter-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 0;
}

.post-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.post-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: var(--lighter-color);
}

.services h2 {
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background: var(--gradient-primary);
    color: white;
}

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

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

.newsletter h2:after {
    background: white;
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.newsletter-form button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 2rem 1rem;
}

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

.footer-logo img {
    width: 100px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.8;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.8rem;
}

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

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--light-color);
    opacity: 0.8;
}

.footer-contact svg {
    flex-shrink: 0;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--light-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    display: none;
}

.cookie-content h3 {
    margin-bottom: 0.8rem;
    color: white;
}

.cookie-content p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

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

.cookie-buttons button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-customize {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-reject {
    background-color: transparent;
    border: 1px solid var(--light-color) !important;
    color: var(--light-color);
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-customize:hover {
    background-color: #d9d9d9;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    font-size: 0.85rem;
    margin-bottom: 0;
}

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

/* Blog Page Styles */
.blog-main {
    background-color: var(--lighter-color);
}

.blog-header {
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: var(--gradient-dark);
    color: white;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-color);
}

.blog-filters {
    padding: 2rem;
    background-color: white;
    box-shadow: var(--box-shadow);
    max-width: 1000px;
    margin: -2rem auto 3rem;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
}

.search-container {
    display: flex;
    margin-bottom: 1.5rem;
}

.search-container input {
    flex-grow: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.search-container button {
    background: var(--primary-color);
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container button:hover {
    background: var(--primary-dark);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.filter-label {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 0.5rem;
}

.filter-tag {
    padding: 0.5rem 1rem;
    background-color: var(--lighter-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-tag:hover, 
.filter-tag.active {
    background-color: var(--primary-color);
    color: white;
}

.blog-posts {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-post {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image {
    flex: 1;
    max-width: 300px;
}

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

.post-content {
    flex: 2;
    padding: 2rem 2rem 2rem 0;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.post-category {
    background-color: var(--primary-light);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.post-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 1rem;
}

.post-content h2:after {
    display: none;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--lighter-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.read-more-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.read-more-button:hover {
    background: var(--primary-dark);
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 4rem 0;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: var(--text-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: white;
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
}

.pagination-next {
    width: auto !important;
    padding: 0 1rem;
    border-radius: 20px !important;
    gap: 0.5rem;
}

/* Buff163 Guide Page Styles */
.buff163-main {
    background-color: var(--lighter-color);
}

.guide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    background: var(--gradient-dark);
    color: white;
    gap: 3rem;
}

.guide-header-content {
    flex: 1;
}

.guide-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guide-header-content p {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--light-color);
}

.guide-header-image {
    flex: 1;
    max-width: 450px;
}

.guide-nav {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 1rem 2rem;
    margin-bottom: 3rem;
    position: sticky;
    top: 92px;
    z-index: 100;
}

.guide-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

.guide-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.guide-nav ul li a:hover::after {
    transform: scaleX(1);
}

.guide-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.guide-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.5rem;
}

.guide-section h2:after {
    left: 0;
    transform: none;
    bottom: 0;
}

.guide-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.guide-subsection {
    margin-bottom: 3rem;
}

.guide-subsection:last-child {
    margin-bottom: 0;
}

.guide-subsection h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.guide-with-image {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.guide-text {
    flex: 3;
}

.guide-image {
    flex: 2;
}

.guide-highlight {
    background-color: var(--lighter-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.guide-highlight h3 {
    margin-bottom: 1rem;
}

.guide-highlight ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.guide-highlight ul li {
    margin-bottom: 0.5rem;
}

.guide-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.guide-option {
    background-color: var(--lighter-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--text-light);
}

.guide-option.recommended {
    border-top-color: var(--success-color);
    background-color: rgba(46, 204, 113, 0.1);
}

.guide-option h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.guide-warning {
    background-color: rgba(231, 76, 60, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--error-color);
}

.guide-warning p {
    margin-bottom: 0;
}

.interface-overview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.interface-image {
    flex: 1;
}

.interface-legend {
    flex: 1;
}

.interface-legend h4 {
    margin-bottom: 1rem;
}

.interface-legend ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.interface-legend ul li {
    margin-bottom: 0.5rem;
}

.listing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.listing-image {
    flex: 1;
}

.listing-details {
    flex: 1;
}

.listing-details ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.listing-details ul li {
    margin-bottom: 0.5rem;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-option {
    background-color: var(--lighter-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.payment-option h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.option-details p {
    margin-bottom: 1rem;
}

.option-security, 
.option-steps {
    margin-top: 1.5rem;
}

.option-security ul,
.option-steps ol {
    padding-left: 1.5rem;
}

.option-security ul {
    list-style-type: disc;
}

.option-steps ol {
    list-style-type: decimal;
}

.option-security ul li,
.option-steps ol li {
    margin-bottom: 0.5rem;
}

.guide-tips {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--info-color);
}

.guide-tips h3 {
    margin-bottom: 1rem;
}

.guide-tips ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.guide-tips ul li {
    margin-bottom: 0.5rem;
}

.arbitrage-example {
    background-color: var(--lighter-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.arbitrage-example h4 {
    margin-bottom: 1rem;
}

.arbitrage-example ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.arbitrage-example ol li {
    margin-bottom: 0.5rem;
}

.security-intro {
    margin-bottom: 2rem;
}

.security-tips, 
.common-scams, 
.dispute-resolution {
    margin-bottom: 2.5rem;
}

.security-tips h3, 
.common-scams h3, 
.dispute-resolution h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.security-tips ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.security-tips ul li {
    margin-bottom: 0.8rem;
}

.scam-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.scam-example {
    background-color: var(--lighter-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--error-color);
}

.scam-example h4 {
    color: var(--error-color);
    margin-bottom: 0.8rem;
}

.scam-example p {
    margin-bottom: 0;
}

.dispute-resolution ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.dispute-resolution ol li {
    margin-bottom: 0.8rem;
}

.faq-container {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    display: flex;
}

.faq-toggle .minus {
    display: none;
}

.faq-item.active .faq-toggle .plus {
    display: none;
}

.faq-item.active .faq-toggle .minus {
    display: block;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

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

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

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.resource-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.resource-link {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.resource-link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.resource-link:hover::after {
    margin-left: 10px;
}

.additional-resources {
    background-color: var(--lighter-color);
    padding: 5rem 2rem;
}

.additional-resources h2 {
    margin-bottom: 3rem;
}

/* CS2 Skins Page Styles */
.skins-main {
    background-color: var(--lighter-color);
}

.skins-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    background: var(--gradient-dark);
    color: white;
    gap: 3rem;
}

.skins-hero-content {
    flex: 1;
}

.skins-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skins-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--light-color);
}

.skins-hero-image {
    flex: 1;
    max-width: 450px;
}

.skin-search {
    padding: 3rem 2rem;
    background-color: white;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-container h2 {
    margin-bottom: 2rem;
}

.search-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-input {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.search-input input {
    flex-grow: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.search-input button {
    background: var(--primary-color);
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input button:hover {
    background: var(--primary-dark);
}

.filter-dropdowns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-dropdowns select {
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    outline: none;
    background-color: white;
    min-width: 150px;
}

.advanced-search {
    align-self: center;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.advanced-search:hover {
    background: var(--primary-color);
    color: white;
}

.skin-categories {
    padding: 5rem 2rem;
    background-color: var(--lighter-color);
}

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

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

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

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

.category-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.category-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.category-link {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.category-link:hover {
    background: var(--primary-dark);
    color: white;
}

.market-trends {
    padding: 5rem 2rem;
    background-color: white;
}

.trends-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trends-chart {
    flex: 1;
    text-align: center;
}

.trends-chart img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.trends-insights {
    flex: 1;
}

.trends-insights h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.trends-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trends-list li {
    display: flex;
    gap: 1rem;
    background-color: var(--lighter-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.trend-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.trend-icon.up {
    background-color: rgba(46, 204, 113, 0.2);
    color: var(--success-color);
}

.trend-icon.down {
    background-color: rgba(231, 76, 60, 0.2);
    color: var(--error-color);
}

.trend-icon.stable {
    background-color: rgba(52, 152, 219, 0.2);
    color: var(--info-color);
}

.trend-content {
    flex-grow: 1;
}

.trend-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.trend-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.view-full-report {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.view-full-report:hover {
    background: var(--primary-dark);
    color: white;
}

.featured-skins {
    padding: 5rem 2rem;
    background-color: var(--lighter-color);
}

.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-skin {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.skin-image {
    flex: 1;
    max-width: 350px;
}

.skin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skin-details {
    flex: 2;
    padding: 2rem;
}

.skin-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.skin-name h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.skin-rarity {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
}

.skin-rarity.covert {
    background-color: #eb4b4b;
}

.skin-rarity.classified {
    background-color: #d32ce6;
}

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

.skin-rarity.milspec {
    background-color: #4b69ff;
}

.skin-rarity.contraband {
    background-color: #e4ae39;
}

.skin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-name {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.stat-value {
    font-weight: 600;
    color: var(--text-color);
}

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

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

.skin-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.view-details, 
.market-check {
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.view-details {
    background-color: var(--primary-color);
    color: white;
}

.market-check {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.view-details:hover {
    background-color: var(--primary-dark);
    color: white;
}

.market-check:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.view-more-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.view-more-button:hover {
    background: var(--primary-dark);
    color: white;
}

.investment-guide {
    padding: 5rem 2rem;
    background-color: white;
}

.investment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.investment-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.investment-card {
    background-color: var(--lighter-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.investment-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.investment-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.investment-card ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.investment-card ul li {
    margin-bottom: 0.8rem;
}

.investment-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.investment-disclaimer {
    max-width: 800px;
    margin: 3rem auto 0;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--error-color);
}

.investment-disclaimer h4 {
    color: var(--error-color);
    margin-bottom: 0.8rem;
}

.investment-disclaimer p {
    margin-bottom: 0;
}

.investment-cta {
    text-align: center;
    margin-top: 3rem;
}

.full-guide-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.full-guide-button:hover {
    background: var(--primary-dark);
    color: white;
}

.resource-section {
    padding: 5rem 2rem;
    background-color: var(--lighter-color);
}

.community-section {
    padding: 5rem 2rem;
    background-color: white;
}

.community-content {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.community-text {
    flex: 1;
}

.community-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.community-benefits {
    margin-bottom: 2rem;
}

.community-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.community-benefits li svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.community-links {
    display: flex;
    gap: 1rem;
}

.discord-link, 
.telegram-link, 
.forum-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.discord-link {
    background-color: #7289da;
    color: white;
}

.telegram-link {
    background-color: #0088cc;
    color: white;
}

.forum-link {
    background-color: var(--primary-color);
    color: white;
}

.discord-link:hover, 
.telegram-link:hover, 
.forum-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

.community-image {
    flex: 1;
    max-width: 450px;
}

/* About Page Styles */
.about-main {
    background-color: var(--lighter-color);
}

.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    background: var(--gradient-dark);
    color: white;
    gap: 3rem;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--light-color);
}

.about-hero-image {
    flex: 1;
    max-width: 450px;
}

.our-story {
    padding: 5rem 2rem;
    background-color: white;
}

.story-content {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 3;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 2;
    max-width: 400px;
}

.our-mission {
    padding: 5rem 2rem;
    background-color: var(--lighter-color);
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.mission-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.mission-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.team-section {
    padding: 5rem 2rem;
    background-color: white;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.team-member {
    background-color: var(--lighter-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

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

.team-member h3 {
    padding: 1.5rem 1.5rem 0.3rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.team-member p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: var(--lighter-color);
}

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

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.achievements {
    padding: 5rem 2rem;
    background-color: white;
}

.achievements-content {
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--lighter-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.achievement-testimonials h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: var(--lighter-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
}

.testimonial p::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author span {
    font-weight: 600;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.partners-section {
    padding: 5rem 2rem;
    background-color: var(--lighter-color);
}

.partners-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.partner-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

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

.partner-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.partner-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.join-section {
    padding: 5rem 2rem;
    background-color: white;
}

.join-content {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.join-text {
    flex: 1;
}

.join-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.join-text h2:after {
    left: 0;
    transform: none;
}

.join-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.discord-button, 
.newsletter-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.discord-button {
    background-color: #7289da;
    color: white;
}

.newsletter-button {
    background-color: var(--primary-color);
    color: white;
}

.discord-button:hover, 
.newsletter-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

.join-image {
    flex: 1;
    max-width: 450px;
}

/* Contact Page Styles */
.contact-main {
    background-color: var(--lighter-color);
}

.contact-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    background: var(--gradient-dark);
    color: white;
    gap: 3rem;
}

.contact-hero-content {
    flex: 1;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--light-color);
}

.contact-hero-image {
    flex: 1;
    max-width: 450px;
}

.contact-options {
    padding: 5rem 2rem;
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info h2:after {
    left: 0;
    transform: none;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    background-color: var(--lighter-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.info-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-details {
    flex-grow: 1;
}

.info-details h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-details a {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.info-details address {
    font-style: normal;
    margin-bottom: 0.5rem;
}

.info-details p {
    color: var(--text-light);
    margin-bottom: 0;
}

.social-connect h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-form-container {
    flex: 1;
}

.contact-form-container h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-form-container h2:after {
    left: 0;
    transform: none;
}

.contact-form {
    background-color: var(--lighter-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

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

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--text-light);
}

.checkbox-group a {
    color: var(--primary-color);
}

.submit-button {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--primary-dark);
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--lighter-color);
}

.faq-section h2 {
    margin-bottom: 3rem;
}

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

.map-section {
    padding: 5rem 2rem;
    background-color: white;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 3rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

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

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

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

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.modal-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1.5rem;
}

.modal-button:hover {
    background: var(--primary-dark);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero, .guide-header, .skins-hero, .about-hero, .contact-hero {
        flex-direction: column;
        padding: 4rem 2rem;
    }
    
    .hero-content, .guide-header-content, .skins-hero-content, .about-hero-content, .contact-hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-content h2, .guide-header-content h2, .skins-hero-content h2, .about-hero-content h2, .contact-hero-content h2 {
        text-align: center;
    }
    
    .hero-content h2:after, .guide-header-content h2:after, .skins-hero-content h2:after, .about-hero-content h2:after, .contact-hero-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-content, .community-content, .join-content {
        flex-direction: column;
    }
    
    .story-image, .community-image, .join-image {
        max-width: 100%;
        order: -1;
        margin-bottom: 2rem;
    }
    
    .join-text h2, .join-text h2:after {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image {
        max-width: 100%;
    }
    
    .post-content {
        padding: 2rem;
    }
    
    .featured-skin {
        flex-direction: column;
    }
    
    .skin-image {
        max-width: 100%;
    }
    
    .guide-with-image {
        flex-direction: column;
    }
    
    .guide-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    header {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        top: 8vh;
        height: 92vh;
        background-color: var(--dark-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 999;
    }
    
    .nav-links li {
        opacity: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .toggle .line2 {
        opacity: 0;
    }
    
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero, .guide-header, .skins-hero, .about-hero, .contact-hero {
        padding: 3rem 1rem;
    }
    
    .community-links, .join-buttons {
        flex-direction: column;
    }
    
    .cookie-banner {
        bottom: 0;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1, .guide-header-content h1, .skins-hero-content h1, .about-hero-content h1, .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .social-icons, .community-links {
        justify-content: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-bottom: 1rem;
    }
}
