#fw-section-newsletter-0940f243-cf22-4206-87be-c5ba5c8a3862 {

/* Newsletter Container */
div[data-section-type="newsletter"] {
    background: linear-gradient(135deg, #1a1a1a, #000000) !important;
    border: 2px solid #ff1a1a !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3) !important;
    text-align: center !important;
    color: white !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Newsletter Title */
div[data-section-type="newsletter"] h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #ff1a1a !important;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7) !important;
    margin-bottom: 1rem !important;
}

/* Newsletter Description */
div[data-section-type="newsletter"] p {
    font-size: 1rem !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
}

/* Newsletter Input Field */
div[data-section-type="newsletter"] input[type="email"] {
    width: 100% !important;
    padding: 0.75rem !important;
    border: 2px solid #ff1a1a !important;
    border-radius: 0.5rem !important;
    background: #1a1a1a !important;
    color: white !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
}

div[data-section-type="newsletter"] input[type="email"]:focus {
    outline: none !important;
    border-color: #ff4d4d !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5) !important;
}

/* Newsletter Button */
div[data-section-type="newsletter"] button {
    background: #ff1a1a !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3) !important;
}

div[data-section-type="newsletter"] button:hover {
    background: #ff4d4d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.5) !important;
}

/* Newsletter Social Links */
div[data-section-type="newsletter"] .social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
}

div[data-section-type="newsletter"] .social-links a {
    color: #ff1a1a !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
}

div[data-section-type="newsletter"] .social-links a:hover {
    color: #ff4d4d !important;
    transform: translateY(-2px) !important;
}
}

































#fw-section-custom-html-ec4e4265-71e4-4172-96ea-572406b0480d {

/* Container for both sections */
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border: 2px solid #ff1a1a;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-align: center;
    color: white;
    max-width: 600px;
    flex: 1;
}

.newsletter-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff1a1a;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.newsletter-section input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ff1a1a;
    border-radius: 0.5rem;
    background: #1a1a1a;
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.newsletter-section input[type="email"]:focus {
    outline: none;
    border-color: #ff4d4d;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.newsletter-section button {
    background: #ff1a1a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.newsletter-section button:hover {
    background: #ff4d4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.5);
}

.newsletter-section .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-section .social-links a {
    color: #ff1a1a;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.newsletter-section .social-links a:hover {
    color: #ff4d4d;
    transform: translateY(-2px);
}

/* Discord Section */
.discord-section {
    flex: 1;
    max-width: 350px;
}
}