/* 
* CS Money Trade Guide Stylesheet
* A modern, responsive design for CS:GO trading guides
*/

/* Base Styles & Variables */
:root {
    --primary-color: #6a3de8;
    --secondary-color: #ff7e5f;
    --accent-color: #42d392;
    --dark-color: #242736;
    --darker-color: #1a1d29;
    --light-color: #f5f6fa;
    --text-color: #333344;
    --text-light: #7a7b8c;
    --border-color: #e0e2e9;
    --success-color: #36d7b7;
    --warning-color: #ffbe76;
    --danger-color: #ff6b6b;
    --shadow-small: 0 2px 5px rgba(0,0,0,0.07);
    --shadow-medium: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-large: 0 8px 30px rgba(0,0,0,0.15);
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: #5429d0;
}

ul, ol {
    list-style-position: inside;
}

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

p {
    margin-bottom: 1.5rem;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius-medium);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
    box-shadow: var(--shadow-small);
}

.btn:hover {
    background-color: #5429d0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-small);
}

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

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

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

.btn-secondary:hover {
    background-color: #ff6a4a;
}

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow-small);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

nav ul {
    display: flex;
    list-style: none;
}

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

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMjIyNTM1Ij48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiMzYTNmNTYiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
    opacity: 0.3;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4428b0 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-align: center;
    position: relative;
}

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

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

/* Recent Posts Section */
.recent-posts {
    padding: 80px 0;
    background-color: var(--light-color);
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.post-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

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

.post-content {
    padding: 25px;
}

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

.post-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

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

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

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    min-width: 320px;
    max-width: 500px;
    flex: 1;
    background-color: var(--light-color);
    border-radius: var(--border-radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-small);
    display: flex;
    flex-direction: column;
}

.quote {
    margin-bottom: 20px;
    position: relative;
}

.quote i.fa-quote-left {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.quote i.fa-quote-right {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.quote p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

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

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

.author h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4428b0 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
    font-size: 16px;
    outline: none;
}

.newsletter button {
    border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
    padding: 0 30px;
    background-color: var(--secondary-color);
}

.newsletter button:hover {
    background-color: #ff6a4a;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.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: white;
    transition: all var(--transition-speed) ease;
}

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

.footer-links h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    box-shadow: var(--shadow-large);
    border-radius: var(--border-radius-medium);
    padding: 20px;
    z-index: 9999;
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s forwards;
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Blog Styles */
.blog-content {
    padding: 60px 0;
}

.post-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-post {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

.blog-post .post-image {
    width: 300px;
    height: 100%;
    min-height: 250px;
}

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

.blog-post .post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-post .post-meta span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

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

.blog-post h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 5px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-small);
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

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

.pagination a:last-child {
    width: auto;
    padding: 0 15px;
}

/* Blog Post Page */
.blog-header {
    text-align: left;
}

.blog-header .post-meta {
    margin-bottom: 15px;
}

.blog-header .post-meta span {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

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

.blog-post-content {
    padding: 60px 0;
}

.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.post-main {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.post-text {
    padding: 40px;
}

.post-text h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

.post-text h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.post-text ul,
.post-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-text li {
    margin-bottom: 10px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 40px 20px;
}

.post-tags span {
    font-weight: 600;
    color: var(--text-color);
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-color);
    padding: 5px 12px;
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all var(--transition-speed) ease;
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border-top: 1px solid var(--border-color);
}

.post-share span {
    font-weight: 600;
    margin-right: 15px;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: transform var(--transition-speed) ease;
}

.post-share a:hover {
    transform: translateY(-3px);
}

.post-share a.facebook {
    background-color: #3b5998;
}

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

.post-share a.linkedin {
    background-color: #0077b5;
}

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

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-top: 1px solid var(--border-color);
}

.post-nav-links {
    display: flex;
    gap: 20px;
}

.post-nav-links a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
}

.post-nav-links a i {
    margin-left: 5px;
    margin-right: 5px;
}

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

.back-to-blog {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.back-to-blog i {
    margin-right: 5px;
}

/* Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-medium);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-info img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.related-post-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-small);
    object-fit: cover;
    margin-right: 15px;
}

.related-post div {
    flex: 1;
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    transition: color var(--transition-speed) ease;
}

.related-post span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.related-post:hover h4 {
    color: var(--primary-color);
}

.newsletter-widget form {
    display: flex;
    flex-direction: column;
}

.newsletter-widget input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

/* More Articles Section */
.more-articles {
    padding: 60px 0;
    background-color: var(--light-color);
}

.more-articles h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.article-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

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

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* About Page Styles */
.about-intro {
    padding: 60px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-text h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.about-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
}

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

.team-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-align: center;
}

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

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

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.team-member p {
    color: var(--text-light);
    padding: 0 20px;
    margin-bottom: 15px;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

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

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

.values-section {
    padding: 60px 0;
    background-color: white;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
}

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

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.achievements-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.achievement-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

.achievement-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(106, 61, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

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

.achievement-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

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

.about-testimonials {
    padding: 60px 0;
}

.join-community {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4428b0 100%);
    color: white;
    text-align: center;
}

.join-community h2 {
    color: white;
    margin-bottom: 15px;
}

.join-community p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.community-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.community-link {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--border-radius-medium);
    color: white;
    transition: all var(--transition-speed) ease;
}

.community-link i {
    font-size: 1.3rem;
    margin-right: 10px;
}

.community-link:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    text-align: center;
    padding: 25px 15px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.social-connect {
    margin-bottom: 40px;
}

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

.business-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.business-info p {
    margin-bottom: 10px;
}

.contact-form-container {
    background-color: var(--light-color);
    border-radius: var(--border-radius-medium);
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

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

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

.contact-form textarea {
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: var(--light-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.map-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.map-container {
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
}

.map-responsive {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

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

.faq-section {
    padding: 60px 0;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-small);
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

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

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.thank-you-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    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: 40px;
    border-radius: var(--border-radius-medium);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 30px;
}

/* Special Elements */
.info-box, .warning-box, .scam-example, .prediction-calendar, .platform-comparison, .formula-box {
    background-color: var(--light-color);
    border-radius: var(--border-radius-medium);
    padding: 25px;
    margin-bottom: 30px;
}

.warning-box {
    background-color: rgba(255, 190, 118, 0.2);
    border-left: 4px solid var(--warning-color);
}

.warning-box h3 {
    color: #e67e22;
    display: flex;
    align-items: center;
}

.warning-box h3 i {
    margin-right: 10px;
}

.scam-example h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.scam-example p {
    margin-bottom: 15px;
}

.prediction-calendar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prediction-item {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.prediction-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prediction-date {
    min-width: 150px;
    font-weight: 600;
    color: var(--primary-color);
}

.prediction-content h4 {
    margin-bottom: 5px;
}

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

.platform-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.platform h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    margin-bottom: 10px;
}

.formula-box {
    background-color: rgba(106, 61, 232, 0.05);
    border-left: 4px solid var(--primary-color);
    font-family: 'Courier New', monospace;
}

.formula-box p {
    margin-bottom: 0;
    text-align: center;
}

.market-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

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

.market-table th {
    background-color: var(--primary-color);
    color: white;
}

.market-table tr:nth-child(even) {
    background-color: rgba(106, 61, 232, 0.05);
}

.market-table tr:hover {
    background-color: rgba(106, 61, 232, 0.1);
}

.security-checklist .checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.security-checklist input[type="checkbox"] {
    margin-right: 10px;
}

.security-score {
    margin-top: 20px;
    text-align: center;
}

.score-bar {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    width: 0%;
    background-color: #ff4d4d;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.calculator-widget #calculator-result {
    margin-top: 15px;
    padding: 15px;
    background-color: var(--light-color);
    border-radius: var(--border-radius-small);
}

.calculator-widget #calculator-result p {
    margin-bottom: 5px;
}

.calculator-widget #calculator-result p:last-child {
    margin-bottom: 0;
}

.community-resources .resource-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.community-resources .resource-list li {
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.community-resources .resource-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

.community-resources .resource-list h4 {
    margin-bottom: 5px;
}

.community-resources .resource-list p {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.community-resources .resource-list a {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.community-resources .resource-list a i {
    color: var(--primary-color);
    margin-left: 5px;
    margin-right: 0;
    font-size: 0.8rem;
    margin-top: 0;
}

.market-calendar .calendar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-calendar .calendar-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.market-calendar .calendar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.market-calendar .calendar-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    margin-right: 15px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-small);
    padding: 5px;
    color: white;
}

.market-calendar .calendar-date .month {
    font-size: 0.8rem;
    font-weight: 600;
}

.market-calendar .calendar-date .day {
    font-size: 1rem;
    font-weight: 700;
}

.market-calendar .calendar-event h4 {
    margin-bottom: 5px;
}

.market-calendar .calendar-event p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Tooltips */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:before,
[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-speed) ease;
    z-index: 999;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    background-color: var(--dark-color);
    color: white;
    padding: 10px 15px;
    border-radius: var(--border-radius-small);
    width: 300px;
    max-width: 300px;
    bottom: 125%;
    left: 50%;
    margin-left: -150px;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}

[data-tooltip]:after {
    content: '';
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent transparent;
    bottom: 115%;
    left: 50%;
    margin-left: -5px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .post-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
        margin-bottom: 40px;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-post .post-image {
        width: 100%;
        height: 200px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .value-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input {
        border-radius: var(--border-radius-medium);
        margin-bottom: 15px;
    }
    
    .newsletter button {
        border-radius: var(--border-radius-medium);
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    [data-tooltip]:before {
        width: 200px;
        margin-left: -100px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    [data-tooltip]:before {
        width: 160px;
        margin-left: -80px;
        font-size: 0.8rem;
    }
}
