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

        body {
            background-color: #0B0B1F;
            color: #FFFFFF;
            font-family: "Lato", sans-serif;font-weight: 400;font-style: normal;
            font-display: swap;
            overflow-x: hidden;
            min-height: 80vh;
        }

        p{
            font-family: "Lato", sans-serif;font-weight: 400;font-style: normal;
            font-size: 1.1rem;
        }
h1,h2,h3,h4{
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: italic;
}
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        /* Subtle gradient overlay that moves slowly */
        .gradient-mesh {
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 0, 73, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 73, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(26, 26, 62, 0.3) 0%, transparent 50%);

        }


        /* Subtle vignette effect */
        .vignette {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse at center,
                transparent 0%,
                transparent 60%,
                rgba(11, 11, 31, 0.4) 100%
            );
            pointer-events: none;
        }

        /* Content container */
        .content {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: top;
            align-items: center;
            padding: 2rem 1rem;
            max-width: 1050px;
            margin: 0 auto;
            width: 100%;
        }

        /* Header Navigation */
        .main-header {
            position: absolute;
            top: 1.5rem;
            left: 20px;
            padding-bottom: 1.5rem;
            right: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 0, 73, 0.1);
            border-color: #FF0049;
            color: #FF0049;
            transform: translateY(-2px);
        }

        .hamburger-menu {
            width: 50px;
            height: 50px;
            background: transparent;
            border: none;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            position: relative;
        }

        .hamburger-menu:hover {
            background: transparent;
        }

        .hamburger-line {
            width: 28px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            position: absolute;
        }

        .hamburger-line:nth-child(1) {
            top: 14px;
        }

        .hamburger-line:nth-child(2) {
            top: 23.5px;
        }

        .hamburger-line:nth-child(3) {
            top: 34px;
        }

        .hamburger-menu.active .hamburger-line:nth-child(1) {
            top: 23.5px;
            transform: rotate(45deg);
        }

        .hamburger-menu.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active .hamburger-line:nth-child(3) {
            top: 23.5px;
            transform: rotate(-45deg);
        }

        .hamburger-menu:hover .hamburger-line {
            background-color: #FF0049;
        }

        /* Mobile Navigation Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 11, 31, 0.8);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-nav-content {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            max-width: 85%;
            height: 100%;
            background: linear-gradient(135deg, rgba(11, 11, 31, 0.98) 0%, rgba(255, 0, 73, 0.05) 100%);
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255, 0, 73, 0.2);
            display: flex;
            flex-direction: column;
            padding: 80px 30px 30px 30px;
            gap: 40px;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 1000;
            overflow-y: auto;
        }

        .mobile-nav-overlay.active .mobile-nav-content {
            transform: translateX(0);
        }

        .mobile-nav-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: transparent;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .mobile-nav-close:hover {
            background: transparent;
        }

        .close-line {
            position: absolute;
            width: 28px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .close-line:first-child {
            transform: rotate(45deg);
        }

        .close-line:last-child {
            transform: rotate(-45deg);
        }

        .mobile-nav-close:hover .close-line {
            background-color: #FF0049;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
            width: 100%;
        }

        .mobile-nav-link {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
            display: block;
            width: 100%;
            padding: 10px 0px;
            border-radius: 8px;
            background: transparent;
            border: 1px solid transparent;
        }

        .mobile-nav-link:hover {
            color: #FF0049;
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 0, 73, 0.3);
            padding: 10px 10px;
        }

        .server-page{
            border: 1px solid rgba(255, 255, 255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }
        .server-page img{
            display: block;
            width: 100%;
            height: auto;
        }

        .mobile-nav-social {
            display: flex;
            gap: 15px;
            margin-top: auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            justify-content: center;
        }

        .mobile-nav-social-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .mobile-nav-social-link:hover {
            background: rgba(255, 0, 73, 0.1);
            border-color: #FF0049;
            color: #FF0049;
            transform: translateY(-3px);
        }

        .hero-section {
            text-align: left;
            width: 100%;
            margin-bottom: 40px;
            margin-top: 120px;
        }

        .hero-section-sub {
            text-align: left;
            width: 100%;
            margin-bottom: 0px;
            margin-top: 120px;
        }

        .logo {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FFFFFF 0%, #FF0049 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-size: 1.5rem;
            color: #FF0049;
            margin-bottom: 30px;
        }

        .description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        /* Newsletter Form */
        .newsletter-form {
            background: linear-gradient(135deg, rgba(11, 11, 31, 0.95) 0%, rgba(255, 0, 73, 0.08) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px;
            max-width: 100%;
            width: 100%;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(255, 0, 73, 0.1);
            animation: fadeInUp 0.3s ease-out 0.2s backwards;
        }

        .form-title {
            font-size: 1.6rem;
            color: #FFFFFF;
            margin-bottom: 10px;
            text-align: left;
        }

        .form-subtitle {
            color: rgba(255, 255, 255, 0.6);
            text-align: left;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .form-row {
            display: flex;
            gap: 15px;
            align-items: flex-end;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: #FFFFFF;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: #FF0049;
            background-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 0, 73, 0.1);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .submit-button {
            padding: 14px 30px;
            background-color: #FF0049;
            color: #FFFFFF;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            white-space: nowrap;
            min-width: 200px;
        }

        .submit-button:hover {
            background-color: #FF335C;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 0, 73, 0.3);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        .privacy-note {
            text-align: left;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin-top: 20px;
            line-height: 1.5;
        }

        .privacy-note a {
            color: #FF0049;
            text-decoration: none;
        }

        .privacy-note a:hover {
            text-decoration: underline;
        }

        /* Social Proof with Avatars */
        .social-proof {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 15px;
            flex-wrap: wrap;
        }

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

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.85rem;
            color: white;
            border: 2px solid #0B0B1F;
            margin-left: -10px;
            overflow:hidden;
            transition: transform 0.3s ease;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .avatar:hover {
            transform: scale(1.1) translateY(-2px);
            z-index: 10;
        }

        .social-proof-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            width: 100%;
            margin-top: 60px;
        }

        .feature-card {
            background: transparent;
            border: 1px solid transparent;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }


        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .feature-icon i {
            display: block;
        }

        .feature-title {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            width: 100%;
            margin-top: 80px;
        }

        .faq-left {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-headline {
            font-size: 2rem;
            color: #FFFFFF;
            line-height: 1.2;
        }

        .faq-teaser {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
        }

        .faq-right {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(255, 0, 73, 0.3);
        }

        .faq-question {
            width: 100%;
            padding: 20px 25px;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .faq-icon {
            font-size: 1rem;
            transition: transform 0.3s ease;
            color: #FF0049;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 25px;
        }

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

        .faq-answer p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
            margin: 0;
        }

        /* Blog Section */
        .blog-section {
            width: 100%;
            margin: 40px auto 40px auto;
        }

        .blog-title {
            font-size: 2.5rem;
            color: #FFFFFF;
            margin-bottom: 50px;
            text-align: left;
        }

        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .blog-post {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .blog-post:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 0, 73, 0.3);
            transform: translateY(-3px);
        }

        .blog-thumbnail {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .blog-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 10px 0;
        }

        .blog-headline {
            font-size: 1.4rem;
            color: #FFFFFF;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .blog-headline a{
            color: #fff;
            transition: ease all 0.2s;
        }

        .blog-headline:hover a{
            color: #FF0049;
        }


        .blog-teaser {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .blog-meta {
            display: flex;
            gap: 5px;
            align-items: center;
            flex-wrap: wrap;
        }

        .blog-date {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            padding-bottom: 0.75rem;
        }

        .blog-category {
            background: rgba(255, 0, 73, 0.1);
            color: #FF0049;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Footer */
        .main-footer {
            position: relative;
            z-index: 10;
            width: 100%;
            padding: 60px 20px 40px 20px;
            margin-top: 100px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1050px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #FFFFFF 0%, #FF0049 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #FF0049;
        }

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

        .footer-social-link {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: rgba(255, 0, 73, 0.1);
            border-color: #FF0049;
            color: #FF0049;
            transform: translateY(-2px);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin: 0;
        }

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

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

        @media (max-width: 768px) {
            .logo {
                font-size: 2.5rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            .description {
                font-size: 1rem;
            }

            .newsletter-form {
                padding: 30px 20px;
            }

            .form-title {
                font-size: 1.4rem;
                text-align: center;
            }

            .form-row {
                flex-direction: column;
                align-items: stretch;
            }

            .submit-button {
                width: 100%;
                min-width: auto;
            }

            .social-proof {
                flex-direction: column;
                gap: 10px;
            }

            .social-proof-text {
                text-align: center;
            }

            .faq-section {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-top: 60px;
            }

            .blog-section {
                width: 100%;
                margin-top: 60px;
            }

            .blog-title {
                font-size: 2rem;
            }

            .blog-post {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-thumbnail {
                height: 180px;
            }

            .blog-headline {
                font-size: 1.2rem;
            }

            .footer-links {
                gap: 20px;
            }

            .footer-link {
                font-size: 0.9rem;
            }
        }


        /* Breadcrumb */
        .breadcrumb {
            width: 100%;
            margin-bottom: 30px;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
        }

        .breadcrumb-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: #FF0049;
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            user-select: none;
        }

        .breadcrumb-current span {
            color: #FF0049;
            font-size: 0.9rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .breadcrumb-list {
                font-size: 0.85rem;
            }
            
            .breadcrumb-current span {
                display: block;
                max-width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
        }

                /* Newsletter Thumbnail */
        .newsletter-thumbnail {
            width: 100%;
            max-width: 100%;
            margin-bottom: 30px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(255, 0, 73, 0.1);
            animation: fadeInUp 0.3s ease-out 0.18s backwards;
        }

        .newsletter-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }

        .newsletter-archive-content {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            padding: 40px;
            max-width: 100%;
            width: 100%;
            height: 80vh;
            overflow-y: auto;
            margin-bottom: 1.5rem;
        }

        /* Custom Scrollbar */
        .newsletter-archive-content::-webkit-scrollbar {
            width: 12px;
        }

        .newsletter-archive-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin: 16px 0;
        }

        .newsletter-archive-content::-webkit-scrollbar-thumb {
            background: #FF335C;
            border-radius: 10px;
            border: 2px solid rgba(11, 11, 31, 0.95);
        }

        .newsletter-archive-content::-webkit-scrollbar-thumb:hover {
            background: #FF0049;
        }

        /* Firefox Scrollbar */
        .newsletter-archive-content {
            scrollbar-width: thin;
            scrollbar-color: #FF335C rgba(255, 255, 255, 0.05);
        }

         /* Share Section */
        .share-section {
            width: 100%;
            margin-top: 2rem;
            margin-bottom: 2rem;
           
        }

        .share-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            display: block;
            text-align: center;
        }

        .share-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .share-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: transparent;
            border: none;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .share-button:hover {
            transform: translateY(-2px);
        }

        .share-twitter:hover {
            background: transparent;
            color: #1DA1F2;
        }

        .share-facebook:hover {
            background: transparent;
            color: #1877F2;
        }

        .share-linkedin:hover {
            background: transparent;
            color: #0A66C2;
        }

        .share-whatsapp:hover {
            background: transparent;
            color: #25D366;
        }

        .share-copy:hover {
            background: transparent;
            color: #FF0049;
        }

         /* Newsletter Navigation */
        .newsletter-nav {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
            margin-top: 40px;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 25px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            max-width: 48%;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 0, 73, 0.3);
            transform: translateY(-3px);
        }

        .nav-prev {
            justify-content: flex-start;
        }

        .nav-next {
            justify-content: flex-end;
            text-align: right;
        }

        .nav-arrow {
            font-size: 24px;
            color: #FF0049;
            transition: transform 0.3s ease;
        }

        .nav-link:hover .nav-arrow {
            transform: translateX(0);
        }

        .nav-prev:hover .nav-arrow {
            transform: translateX(-5px);
        }

        .nav-next:hover .nav-arrow {
            transform: translateX(5px);
        }

        .nav-text {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .nav-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-title {
            font-size: 1rem;
            color: #FFFFFF;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .newsletter-nav {
                flex-direction: column;
                gap: 15px;
            }

            .nav-link {
                max-width: 100%;
            }

            .nav-next {
                text-align: left;
                justify-content: flex-start;
            }

            .nav-next .nav-text {
                order: 1;
            }

            .nav-next .nav-arrow {
                order: 2;
            }
        }
#newsletter-single .blog-meta{
    margin-bottom: 1.25rem;
    justify-content: center;
}

#newsletter-single .blog-date{
    padding-bottom: 0px;
}



h1.front-page-heading{
    font-size: 1.8rem;
    color: #FFF;
}

h1.front-page-heading span{
    color: #FF0049;
    display: block;
}
.top-logo{
    width: 90%; max-width: 300px; height: auto; margin-top: 0px; margin-bottom: 0px;
}

@media (max-width: 768px) {
.top-logo{
    width: 90%; max-width: 250px; height: auto; margin-top: 0px; margin-bottom: 0px;
}

}

.footer-logo{
    width: 80%; max-width: 170px; height: auto; margin-top: 20px; margin-bottom: 10px;
}

.blog-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-copyright{
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 3px 6px 3px 6px;
    font-size: 0.65rem;
    color: #fff;
    background-color: rgba(11, 11, 31, 0.5);
    display: inline-block;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
}

.hr{
    display: block;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-bottom: 2rem;
}

.wpcf7-spinner{
    display: none!important;
}

.newsletter-content h2, .simracing-news-content h2{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1.25rem;
}

.newsletter-section h3, .simracing-news-content h3{
    font-size: 1.25rem;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0.2rem;
    color: #FF0049;
}

.newsletter-content p, .simracing-news-content p{
    padding-bottom: 1rem;
}
.simracing-news-content img.alignnone{
display: block;
width: 100%!important;
max-width: 100%!important;
height: auto;
border-radius: 8px;
border: 1px solid #0f0c21;
margin-bottom: 1rem;
}

.simracing-news-content ul, ul.main-ul{
    margin-bottom: 1rem;
    padding-left: 15px;
}

.simracing-news-content ul li, ul.main-ul li{
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.newsletter-content .newsletter-section{
 padding-bottom: 1rem;
 margin-bottom: 2rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.newsletter-content .newsletter-section .section-item {
            display: flex;
            flex-wrap: wrap;
        }

        .section-item > div {
            width: 100%;
        }

        @media (min-width: 768px) {
            .section-item.reverse {
            flex-direction: row-reverse;
        }
            .section-item > div:first-child {
                width: 40%;
                padding-right: 10px;
                padding-top: 10px;
            }

            .section-item > div:last-child {
                width: 60%;
            }
        }
.newsletter-content .newsletter-section .section-item img{
    border-radius: 6px;
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.simracing-news-content{
 width: 100%;
 display: block;
 margin: 0 auto;
}
    @media (min-width: 768px) {
        .simracing-news-content{
        width: 90%;
        display: block;
        }
    }

    @media (min-width: 1000px) {
        .simracing-news-content{
        width: 80%;
        display: block;
        }
    }

.newsletter-small-button{
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0 auto 0 0;
}

@media (min-width: 768px) {
    .newsletter-small-button{
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin: 0 0 0 auto;
    }
}
a.small-link{
    color: rgba(255, 255, 255, 0.7);
    transition: all ease 0.2s;
    margin-top: 0.5rem;
    margin-bottom: 0;
    display: inline-block;
    font-style: italic;
    font-size: 0.9rem;
}

a.small-link:hover{
    color: #FF0049;
}


.page-content{
    width: 100%;
    display: block;
}

.page-content p{
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.abstand-unten-l-ma{
    margin-bottom: 80px;
}

.abstand-oben-l-ma{
    margin-top: 80px;
}

.dsgvo-yt-container{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hrnav{
    padding-top:20px;
    margin-top: 19px;
    border-top: 1px solid rgba(255, 255, 255,0.1);
    display: block;
    width: 100%;
}

span.color-font{
    color: #FF0049!important;
}

span.color-font-white{
    color: #fff!important;
}

.praetio-container {
  display: flex;
  flex-direction: row;
}

.praetio-container .flex-left {
width: 50%;
}

.praetio-container .flex-right {

width: 50%;

}

@media (max-width: 768px) {
    .praetio-container {
  flex-direction: column;
}
  .praetio-container .flex-left,
  .praetio-container .flex-right {
    width: 100%;
  }
}

img.resp-image{
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

img.resp-image-80{
    display: block;
    width: 80%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
}

/* SVG Icon Styles */
.icon-arrow,
.icon-calendar {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 4px;
}

.icon-arrow svg,
.icon-calendar svg {
    width: 1em;
    height: 1em;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

/* Mobile Navigation Images */
.mobile-nav-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-top: 40px;
    margin-bottom: 20px;
}

.ams2-logo {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 5px auto 10px auto;
}

.author-box, .info-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.author-box-image-wrapper {
    flex-shrink: 0;
}

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

.author-box-content {
    flex-grow: 1;
}

.author-box-name {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.author-box-name a {
    text-decoration: none;
    color: #fff;
}

.author-box-name a:hover {
    color: #FF0049;
}

.author-box-bio {
padding-bottom: 1rem;
}

.info-box {
width: 100%;
display: block;
text-align: center;
}

.cta_01 {
    margin-top: 2rem;
    background-color:#FF0049;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    padding: 1rem 2rem;
    line-height: 1.0;
    transition: opacity 0.3s ease;
    display: inline-block;;
}

.cta_01:hover{
    opacity: 0.7;
}


.dsgvo-yt-overlay.dsgvo-yt-custom{
    border: 1px solid #FF0049;
    border-radius: 8px;
    overflow: hidden!important;
}


.icon-img{
    width: 100%;
    max-width: 70px;
    height: auto;
    margin: 0 auto 1rem auto;
}

/* Pagination */
.navigation.pagination {
    width: 100%;
    margin-top: 50px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a.page-numbers {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.nav-links a.page-numbers:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 73, 0.3);
    color: #FF0049;
    transform: translateY(-2px);
}

.nav-links span.page-numbers.current {
    background: #FF0049;
    border: 1px solid #FF0049;
    color: #FFFFFF;
}

.nav-links a.prev,
.nav-links a.next {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.nav-links a.prev:hover,
.nav-links a.next:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 73, 0.3);
    color: #FF0049;
    transform: translateY(-2px);
}

.nav-links span.dots {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    min-width: auto;
    padding: 8px 4px;
}

@media (max-width: 768px) {
    .pagination-label {
        display: none;
    }

    .nav-links a,
    .nav-links span {
        min-width: 40px;
        height: 40px;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

#metis-img-pixel img{
height: 1px!important;
width: 1px!important;
}

/* ============================================
   POST SLIDER
   ============================================ */
.post-slider {
    width: 100%;
    margin-bottom: 40px;
    display: grid;
    grid-template-rows: auto auto;
}

.post-slide {
    grid-row: 1;
    grid-column: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

.post-slide--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.post-slide-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 0, 73, 0.08) 0%, rgba(11, 11, 31, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.post-slide-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
}

.post-slide-content .blog-date {
    padding-bottom: 0;
}

.post-slide-headline {
    font-size: 1.5rem;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

.post-slide-headline a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-slide-headline a:hover {
    color: #FF0049;
}

.post-slide-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-slider-dots {
    grid-row: 2;
    grid-column: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.post-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.post-slider-dot--active {
    background: #FF0049;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .post-slide {
        grid-template-columns: 1fr;
        align-content: start;
    }

    .post-slide-headline {
        font-size: 1.2rem;
    }

}


p.date-single{
    font-size: 0.7rem;
    color:#FF0049;
}