@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Google Translate toolbar elrejtése */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

.skiptranslate.goog-te-gadget {
    display: none !important;
}

:root {
    --bg-color: #020617;
    --text-color: #cbd5e1;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    top: 0 !important;
    /* Fix Google Translate */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.95)), url('assets/hero_bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -10;
    filter: brightness(1.25) contrast(1.15) saturate(1.3);
    pointer-events: none;
}

/* Hide Google Translate Top Banner and Tooltips */
.skiptranslate iframe.goog-te-banner-frame {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(90deg, #60a5fa, #c084fc); /* Lighter and more vibrant */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.no-bs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.vps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Page Headers (for subpages) */
.page-header {
    position: relative;
    padding: 150px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.95)), url('assets/hero_bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(1.25) contrast(1.15) saturate(1.3);
    pointer-events: none;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2rem; /* Mobile first */
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-header p {
    font-size: 0.95rem; /* Mobile first */
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
    .page-header p {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .page-header h1 {
        font-size: 3.5rem;
    }
    .page-header p {
        font-size: 1.2rem;
    }
}

/* Service Showcase Layout */
.content-block.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 100%; /* Override standard content-block limit */
    padding: 60px; /* Uniform, spacious inner padding */
}

.content-block.service-showcase > div {
    width: 100%;
}

.service-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 16 / 9; /* Wide aspect ratio for mobile screens */
    object-fit: cover;
    border-radius: 1.5rem; /* rounded-3xl */
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 0 30px rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .content-block.service-showcase {
        flex-direction: row;
        align-items: center; /* Vértically center items when in row */
    }
    .content-block.service-showcase > div {
        flex: 1;
    }
    .service-image {
        aspect-ratio: 1 / 1; /* Retain full square showcase size on desktop */
    }
    .aspect-3-2 {
        aspect-ratio: 3 / 2 !important;
    }
}

.aspect-3-2 {
    aspect-ratio: 16 / 9; /* mobile default */
}

.pulse-glow {
    animation: purple-pulse 3s infinite alternate ease-in-out;
}

@keyframes purple-pulse {
    0% {
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 0 20px rgba(168, 85, 247, 0.2);
    }
    100% {
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 0 45px rgba(168, 85, 247, 0.6);
    }
}

/* Float Layout Custom Wrappers */
.wrap-image-right {
    float: none;
    width: 100%;
    margin-bottom: 24px;
    margin-top: 16px;
    display: block;
}

.wrap-image-left {
    float: none;
    width: 100%;
    margin-bottom: 24px;
    margin-top: 16px;
    display: block;
}

@media (min-width: 768px) {
    .wrap-image-right {
        float: right;
        max-width: 450px;
        margin-left: 40px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .wrap-image-left {
        float: left;
        max-width: 450px;
        margin-right: 40px;
        margin-bottom: 20px;
        margin-top: 10px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #6d28d9 0%, #1d4ed8 100%);
}

.btn-secondary {
    background: rgba(148, 163, 184, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(148, 163, 184, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.logo a {
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-links a:hover,
.dropbtn:hover {
    color: var(--accent-blue);
}

/* Dropdown Content (Hidden by Default) */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    padding: 0;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
    z-index: 1000;
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 12px;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Selector */
.lang-select {
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.lang-select:hover {
    border-color: var(--accent-blue);
}

.lang-select option {
    background: #0f172a;
    color: white;
}

/* Sidebar Menu */
.sidebar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.sidebar-wrapper.active {
    pointer-events: auto;
    visibility: visible;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-wrapper.active .sidebar-overlay {
    opacity: 1;
}

.sidebar-menu {
    position: absolute;
    top: 0;
    left: -350px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.6), inset 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Sidebar Dropdown logic */
.sidebar-dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 30px;
    gap: 10px;
    margin-bottom: 10px;
}

.sidebar-dropdown.active .sidebar-dropdown-content {
    display: flex;
}

.sidebar-dropdown .fa-chevron-down {
    transition: transform 0.3s ease;
}

.sidebar-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

@media (min-width: 769px) {
    .sidebar-mobile-only {
        display: none !important;
    }
}

.sidebar-wrapper.active .sidebar-menu {
    left: 0;
}

.sidebar-links a {
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.sidebar-links a:hover {
    transform: translateX(8px);
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.8), 0 0 24px rgba(139, 92, 246, 0.4);
}

.menu-icon:hover {
    color: var(--accent-blue) !important;
}

.close-btn {
    transition: background 0.3s, color 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ef4444 !important;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 120px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.95)), url('assets/hero_bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(1.25) contrast(1.15) saturate(1.3);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px auto;
    line-height: 1.7;
}

/* No BS Section */
.no-bs-grid,
.brokers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Win-Win Section */
.win-win-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: white;
}

.step-text p {
    color: #94a3b8;
    line-height: 1.6;
}

.win-win-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card {
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Broker Card Layout & Hover Effects */
.broker-card {
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.broker-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.broker-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.broker-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.broker-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.broker-card .btn {
    margin-top: auto;
}

.broker-logo {
    display: block;
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    filter: grayscale(100%) brightness(0.85);
    transition: all 0.4s ease;
}

@media (hover: hover) {
    .broker-card:hover .broker-logo {
        transform: translateY(-4px);
        filter: grayscale(0%) brightness(1) drop-shadow(0 0 7px rgba(59, 130, 246, 0.55));
    }
}

@media (hover: none) {
    .broker-logo {
        filter: grayscale(0%) brightness(1) drop-shadow(0 0 7px rgba(59, 130, 246, 0.55));
    }
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

/* Hover pause CSAK valódi egeres eszközökön (nem mobilon) */
@media (hover: hover) {
    .testimonials-track:hover {
        animation-play-state: paused;
    }
}

.testimonials-track.paused {
    animation-play-state: paused;
}

.testimonial-card {
    width: 400px;
    padding: 40px;
    border-radius: 24px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: #94a3b8;
}

.author-info .strategy {
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 16px));
    }
}

/* Content Blocks for Subpages */
.content-block {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 32px;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: white;
}

.content-block h3 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--accent-blue);
}

.content-block p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block ul,
.content-block ol {
    margin-left: 24px;
    margin-bottom: 24px;
    color: #cbd5e1;
    line-height: 1.8;
}

.content-block li {
    margin-bottom: 8px;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 24px 0;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #94a3b8;
    line-height: 1.7;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-blue);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 40px;
    text-align: center;
    color: #64748b;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-container {
        gap: 10px;
        padding: 10px 0;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a,
    .dropbtn {
        font-size: 0.75rem !important;
        letter-spacing: 0.05em !important;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .no-bs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .win-win-content {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 160px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1350px) {
    .nav-links {
        gap: 15px !important;
    }
    .nav-links a, .dropbtn {
        font-size: 0.8rem !important;
    }
    .nav-container {
        gap: 15px !important;
    }
    .nav-left {
        gap: 15px !important;
    }
    .nav-actions .btn {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }
    .lang-select {
        padding: 4px 6px !important;
        font-size: 0.7rem !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    nav {
        padding: 5px 0;
        overflow: visible;
    }

    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 5px 10px;
        display: flex;
        align-items: center;
        gap: 0 !important;
    }

    .nav-left {
        gap: 8px !important;
    }

    .nav-logo {
        height: 40px !important;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .lang-select {
        font-size: 0.65rem;
        padding: 3px 4px;
        max-width: 85px;
    }

    .nav-actions .btn-secondary {
        display: none !important;
    }

    .nav-actions .btn {
        padding: 5px 8px !important;
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .hero {
        padding-top: 150px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .container {
        padding: 0 16px;
    }

    .content-block {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.25rem !important;
    }

    .no-bs-grid,
    .brokers-grid,
    .ea-feature-grid,
    .vps-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .widget-container {
        justify-content: flex-start !important;
    }

    /* ShowMyTrades Widget mobil – 600px vízszintesen görgethető */
    [id^="smt-stats-"] {
        transform: none !important;
        min-width: 600px !important;
        width: 600px !important;
        height: 537px !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .activation-form-container {
        padding: 15px !important;
    }
    .activation-form-container > div {
        padding: 10px !important;
    }
}


/* ShowMyTrades Widget Asztali alapértelmezett (1000px) */
[id^="smt-stats-"] {
    width: 1000px !important;
    max-width: 100% !important;
    height: 537px !important;
    margin: 40px auto 0 !important;
    display: block !important;
}

/* Nav Logo Hover Effect */
.nav-logo {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5) !important;
}

/* Guide Styles */
.guide-wrapper {
    padding: 24px; /* Default for mobile */
}

.guide-title {
    font-size: 1.8rem; /* Mobile */
    margin-bottom: 16px;
    color: white;
}

.guide-intro {
    color: #cbd5e1;
    font-size: 0.95rem; /* Mobile */
    line-height: 1.6;
    margin-bottom: 30px;
}

.zoom-hint {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .guide-wrapper {
        padding: 40px;
    }
    .guide-title {
        font-size: 2.2rem;
    }
    .guide-intro {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .guide-wrapper {
        padding: 60px;
    }
    .guide-title {
        font-size: 2.5rem;
    }
    .guide-intro {
        font-size: 1.15rem;
    }
}

.guide-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.guide-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .guide-step {
        padding: 40px;
        border-radius: 32px;
    }
}

@media (min-width: 992px) {
    .guide-step {
        grid-template-columns: 1fr 1fr;
        padding: 60px;
    }
    
    .guide-step.wide-text {
        grid-template-columns: 35% 65%;
    }
    
    .guide-step:nth-child(even) .guide-content {
        order: 2;
    }
    .guide-step:nth-child(even) .guide-image-wrapper {
        order: 1;
    }
}

.guide-image-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    background: #000;
}

.guide-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.3);
}

.guide-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.guide-image-wrapper:hover img {
    transform: scale(1.05);
}

.guide-image-wrapper::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(59, 130, 246, 0.8);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.guide-image-wrapper:hover::after {
    opacity: 1;
}

.guide-content {
    display: flex;
    flex-direction: column;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.lang-section {
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.lang-section:last-child {
    margin-bottom: 0;
}

.lang-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.guide-text {
    line-height: 1.8;
    font-size: 0.95rem; /* Mobile first */
    color: #e2e8f0;
}

@media (min-width: 768px) {
    .guide-text {
        font-size: 1.1rem;
    }
}

.highlight-red {
    color: #ff4d4d;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(255, 77, 77, 0.2);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 1);
    cursor: default;
    animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
}

/* Strategy Copy Styles */
.strategy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.strategy-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
}

.strategy-name {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.copy-btn {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.copy-btn i {
    font-size: 0.9rem;
}

.copy-success {
    background: #10b981 !important;
    color: white !important;
    border-color: #10b981 !important;
}


