/* SEO-Optimized Images */
.seo-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 20px auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

.seo-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
    filter: brightness(1) contrast(1.2);
}

.image-container {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.image-caption {
    color: #00ff88;
    font-size: 1.1rem;
    margin-top: 15px;
    font-family: 'TrubitPlex-Medium', sans-serif;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
    font-style: italic;
}

/* Enhanced Container Spacing */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Better Section Spacing */
.benefits-section,
.features-section,
.faq-section,
.reviews-section,
.linking-section,
.social-section {
    padding: 0 20px;
}

/* Enhanced Card Shadows and Effects */
.benefit-item,
.feature-card,
.faq-item,
.review-card,
.internal-links,
.external-links,
.social-link {
    position: relative;
    overflow: hidden;
}

.benefit-item::before,
.feature-card::before,
.faq-item::before,
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before,
.feature-card:hover::before,
.faq-item:hover::before,
.review-card:hover::before {
    left: 100%;
}

/* Improved Typography */
.benefits-section h2,
.features-section h2,
.faq-section h2,
.reviews-section h2,
.linking-section h2,
.social-section h2 {
    position: relative;
    padding-bottom: 20px;
}

.benefits-section h2::after,
.features-section h2::after,
.faq-section h2::after,
.reviews-section h2::after,
.linking-section h2::after,
.social-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    border-radius: 2px;
}

/* Enhanced Grid Layouts */
.benefits-grid,
.features-grid,
.faq-container,
.reviews-grid {
    margin-top: 50px;
}

/* Better Mobile Responsiveness */
@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 25px;
    }
    
    .benefits-grid,
    .features-grid,
    .faq-container,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 1000px;
        padding: 0 20px;
    }
    
    .benefits-grid,
    .features-grid,
    .faq-container,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to different sections */
.benefits-section {
    animation: fadeInUp 0.8s ease-out;
}

.features-section {
    animation: slideInLeft 0.8s ease-out;
}

.faq-section {
    animation: slideInRight 0.8s ease-out;
}

.reviews-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced Hover Effects */
.benefit-item:hover,
.feature-card:hover,
.faq-item:hover,
.review-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Improved Focus States for Accessibility */
.benefit-item:focus,
.feature-card:focus,
.faq-item:focus,
.review-card:focus,
.social-link:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

/* Enhanced Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #00ff88;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 100px;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.8rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 70px;
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-item {
    background: linear-gradient(145deg, #1a1a1a, #0d2d1a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-item:hover {
    border-color: #00ff88;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.25);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.benefit-item h3 {
    color: #00ff88;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-family: 'TrubitPlex-Medium', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.benefit-item p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    padding: 0 10px;
}

/* Introduction Section */
.intro-section {
    text-align: center;
    margin-bottom: 100px;
    padding: 0 20px;
}

.intro-section h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 40px;
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    line-height: 1.2;
}

.intro-section p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Features Section */
.features-section {
    margin-bottom: 100px;
    text-align: center;
}

.features-section h2 {
    font-size: 2.8rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 70px;
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #0d2d1a);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.3);
    border-color: #00ffaa;
}

.feature-card h3 {
    color: #00ff88;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-family: 'TrubitPlex-Medium', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    padding: 0 10px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 100px;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.8rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 70px;
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #0d2d1a);
    border: 2px solid #333;
    border-radius: 18px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: 'TrubitPlex-Medium', sans-serif;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 100px;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.8rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 70px;
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(145deg, #1a1a1a, #0d2d1a);
    border: 2px solid #333;
    border-radius: 18px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 255, 136, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-header h4 {
    color: #00ff88;
    font-size: 1.2rem;
    font-family: 'TrubitPlex-Medium', sans-serif;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.review-card p {
    color: #e0e0e0;
    line-height: 1.7;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
}

/* Linking Section */
.linking-section {
    margin-bottom: 100px;
    text-align: center;
}

.linking-section h2 {
    font-size: 2.8rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 70px;
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.internal-links, .external-links {
    background: linear-gradient(145deg, #1a1a1a, #0d2d1a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.internal-links h3, .external-links h3 {
    color: #00ff88;
    font-size: 1.7rem;
    margin-bottom: 30px;
    font-family: 'TrubitPlex-Medium', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    text-align: center;
}

.internal-links ul, .external-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internal-links li, .external-links li {
    margin-bottom: 18px;
}

.internal-links a, .external-links a {
    color: #00ff88;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 12px 15px;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid transparent;
}

.internal-links a:hover, .external-links a:hover {
    color: #00ffaa;
    transform: translateX(8px);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

/* Social Media Section */
.social-section {
    text-align: center;
    margin-bottom: 80px;
}

.social-section h2 {
    font-size: 2.8rem;
    color: #00ff88;
    margin-bottom: 60px;
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: linear-gradient(145deg, #1a1a1a, #0d2d1a);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 25px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 255, 136, 0.25);
    color: #00ff88;
}

.social-link svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.3));
}

/* Social Media Specific Colors */
.social-link.twitter:hover { border-color: #1da1f2; color: #1da1f2; }
.social-link.facebook:hover { border-color: #1877f2; color: #1877f2; }
.social-link.linkedin:hover { border-color: #0077b5; color: #0077b5; }
.social-link.instagram:hover { border-color: #e4405f; color: #e4405f; }
.social-link.youtube:hover { border-color: #ff0000; color: #ff0000; }
.social-link.telegram:hover { border-color: #0088cc; color: #0088cc; }

/* Responsive Design */
@media (max-width: 768px) {
.seo-section {
        padding: 60px 0;
    }
    
    .intro-section h1 {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    
    .intro-section p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .benefits-section h2,
    .features-section h2,
    .faq-section h2,
    .reviews-section h2,
    .linking-section h2,
    .social-section h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .benefits-grid, .features-grid, .faq-container, .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .links-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .benefit-item, .feature-card, .faq-item, .review-card {
        padding: 30px 25px;
    }
    
    .internal-links, .external-links {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .intro-section h1 {
        font-size: 2.5rem;
    }
    
    .benefit-item, .feature-card, .faq-item, .review-card {
        padding: 25px 20px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .social-link {
        padding: 20px 15px;
        font-size: 1rem;
    }
}

/* Security Section */
.security-section {
    margin-bottom: 100px;
    text-align: center;
}

.security-section h2 {
    font-size: 2.8rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 70px;
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.security-item {
    background: linear-gradient(145deg, #1a1a1a, #0d2d1a);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.3);
    border-color: #00ffaa;
}

.security-item h3 {
    color: #00ff88;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-family: 'TrubitPlex-Medium', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.security-item p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    padding: 0 10px;
}

/* Trading Tools Section */
.trading-tools-section {
    margin-bottom: 100px;
    text-align: center;
}

.trading-tools-section h2 {
    font-size: 2.8rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 70px;
    font-family: 'TrubitPlex-SemiBold', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.tool-item {
    background: linear-gradient(145deg, #1a1a1a, #0d2d1a);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.3);
    border-color: #00ffaa;
}

.tool-item h3 {
    color: #00ff88;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-family: 'TrubitPlex-Medium', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.tool-item p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    padding: 0 10px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-section h2,
    .trading-tools-section h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .security-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .security-item,
    .tool-item {
        padding: 30px 25px;
    }
    
    .image-container {
        margin: 30px 0;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .security-item,
    .tool-item {
        padding: 25px 20px;
    }
    
    .image-container {
        margin: 20px 0;
        padding: 10px;
    }
    
    .seo-image {
        margin: 15px auto;
    }
}
