/* ==========================================================================
   DM Play (dmplays.co.in) - Main Stylesheet
   Theme Color: Crimson Red, Ruby & Gold (matching official DmPlay logo)
   Structure: Same clean SaaS & gaming layout as dmfirst.ai + Hamburger Menu
   ========================================================================== */

:root {
    /* Brand Theme Colors based on DmPlay Logo */
    --primary-red: #c81d25;
    --primary-dark-red: #991b1b;
    --primary-deep: #7f1d1d;
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    --accent-gold-dark: #d97706;
    
    /* Backgrounds & Tints */
    --rose-bg: #fef2f2;
    --rose-light: #fff8f8;
    --rose-subtle: #fff1f2;
    --border-color: #fecaca;
    --border-subtle: #fee2e2;
    
    /* Text */
    --text-main: #2b2b2b;
    --text-muted: #555555;
    --text-heading: #7f1d1d;
    --white: #ffffff;
    
    /* Dark Layouts */
    --dark-bg: #1c0709;
    --dark-footer: #120405;
    --dark-border: #381014;
    
    /* Shadows & Radii */
    --shadow-sm: 0 1px 3px rgba(153, 27, 27, 0.08);
    --shadow-md: 0 4px 14px rgba(153, 27, 27, 0.12);
    --shadow-lg: 0 8px 24px rgba(153, 27, 27, 0.18);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
    --transition: all 0.25s ease;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--primary-dark-red);
    text-decoration: underline;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold-dark);
    text-decoration: none;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.narrow-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Top Bar */
.top-nav-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #fce7e7;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.top-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger Button */
.hamburger-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--rose-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: var(--transition);
}

.hamburger-btn:hover {
    background: #fee2e2;
    border-color: var(--primary-red);
    box-shadow: 0 2px 8px rgba(183, 28, 28, 0.15);
}

.hamburger-bar {
    width: 22px;
    height: 2.5px;
    background-color: var(--primary-deep);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger-btn.active .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.btn-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark-red) 100%);
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 14.5px;
    font-weight: 700;
    padding: 9px 24px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid var(--primary-deep);
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(183, 28, 28, 0.2);
}

.btn-header:hover {
    background: linear-gradient(135deg, #e53935 0%, var(--primary-red) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.35);
}

/* Main Site Header */
.main-header {
    background: #ffffff;
    padding: 16px 0 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.main-header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.site-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(183, 28, 28, 0.2));
    transition: transform 0.25s ease;
}

.site-logo:hover {
    transform: scale(1.03);
}

/* Auth Pages (Login & Register Cards) */
.auth-wrapper {
    max-width: 480px;
    margin: 0 auto 40px;
}

.auth-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.12);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold), var(--primary-dark-red));
}

.auth-badge-banner {
    background: linear-gradient(135deg, #fff1f2 0%, #fee2e2 100%);
    border: 1px dashed var(--primary-red);
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 24px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-title {
    font-size: 24px;
    color: var(--primary-deep);
    text-align: center;
    margin-bottom: 6px;
    font-weight: 800;
}

.auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    stroke: var(--primary-dark-red);
    stroke-width: 2;
    fill: none;
    pointer-events: none;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-main);
    background: var(--rose-light);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-red);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(200, 29, 37, 0.12);
}

.input-group-otp {
    display: flex;
    gap: 10px;
}

.input-group-otp .form-control {
    flex: 1;
}

.btn-otp {
    background: var(--rose-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-deep);
    font-size: 13.5px;
    font-weight: 700;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-otp:hover {
    background: #fee2e2;
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    margin-top: 2px;
}

.form-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--text-muted);
}

.form-checkbox input {
    accent-color: var(--primary-red);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-dark-red);
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-auth-submit {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark-red) 100%);
    color: #ffffff;
    border: none;
    height: 50px;
    border-radius: 8px;
    font-size: 16.5px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(183, 28, 28, 0.3);
    margin-top: 8px;
}

.btn-auth-submit:hover {
    background: linear-gradient(135deg, #e53935 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(183, 28, 28, 0.4);
}

.auth-switch {
    text-align: center;
    font-size: 14.5px;
    color: var(--text-muted);
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f2f2f2;
}

.auth-switch a {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Sliding Drawer & Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 4, 5, 0.65);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.nav-drawer.active {
    transform: translateX(320px);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--rose-subtle);
    border-bottom: 1px solid var(--border-color);
}

.drawer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: var(--primary-deep);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.drawer-close-btn:hover {
    color: var(--primary-red);
    background: #fee2e2;
}

.drawer-body {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.drawer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-nav-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-main);
    text-decoration: none !important;
    font-size: 15.5px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
    transition: var(--transition);
}

.drawer-nav-item a:hover .nav-icon,
.drawer-nav-item.active a .nav-icon {
    stroke: var(--primary-red);
}

.drawer-nav-item a:hover,
.drawer-nav-item.active a {
    background: var(--rose-bg);
    color: var(--primary-red);
    border-color: var(--border-color);
    box-shadow: 0 2px 6px rgba(183, 28, 28, 0.08);
}

.drawer-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #f2f2f2;
}

.btn-drawer {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none !important;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-drawer-reg {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark-red) 100%);
    color: #ffffff !important;
    border: 1px solid var(--primary-deep);
}

.btn-drawer-reg:hover {
    box-shadow: 0 4px 10px rgba(183, 28, 28, 0.3);
}

.btn-drawer-log {
    background: var(--rose-bg);
    color: var(--primary-deep) !important;
    border: 1px solid var(--border-color);
}

.btn-drawer-log:hover {
    background: #fee2e2;
}

/* Main Content Area */
.site-main-content {
    flex: 1;
    padding: 35px 0 60px;
}

/* Hero Section */
.hero-center {
    text-align: center;
    margin-bottom: 35px;
}

.hero-avatar {
    width: 190px;
    height: 190px;
    margin: 0 auto 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-avatar:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 28px rgba(183, 28, 28, 0.3);
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.btn-cta-dotted {
    display: inline-block;
    background-color: var(--rose-bg);
    color: #000000 !important;
    text-decoration: none !important;
    border: 2px dotted #000000;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 36px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.btn-cta-dotted:hover {
    background-color: #ffe4e6;
    border-color: var(--primary-red);
    color: var(--primary-red) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.lead-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 25px;
}

/* Specification / Overview Table */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0 45px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.dmplay-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.dmplay-table th,
.dmplay-table td {
    padding: 14px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.dmplay-table tr:nth-child(even) {
    background-color: var(--rose-light);
}

.dmplay-table td:first-child {
    font-weight: 700;
    color: var(--primary-deep);
    background-color: var(--rose-subtle);
    width: 40%;
}

.dmplay-table td:last-child {
    font-weight: 500;
    color: #222;
}

/* Headings & Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.35;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
}

h1 {
    font-size: 32px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

h2 {
    font-size: 26px;
    border-bottom: 2px solid var(--rose-bg);
    padding-bottom: 8px;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-red);
}

h3 {
    font-size: 20px;
    color: var(--primary-dark-red);
}

p {
    margin-bottom: 1.3em;
    font-size: 16px;
    color: var(--text-main);
}

/* Lists styling */
.feature-list, .step-list {
    margin: 16px 0 28px 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15.5px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 16px;
}

.step-list {
    counter-reset: dm-step-counter;
}

.step-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-size: 15.5px;
    line-height: 1.6;
}

.step-list li::before {
    counter-increment: dm-step-counter;
    content: counter(dm-step-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: var(--rose-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-deep);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards & Badges */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 24px 0 35px;
}

.card-box {
    background: var(--rose-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.card-box:hover {
    background: #ffffff;
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-box-icon {
    width: 44px;
    height: 44px;
    background: var(--rose-bg);
    color: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid var(--border-color);
}

.card-box-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-red);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.card-box h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--primary-deep);
}

.card-box p {
    margin: 0;
    font-size: 14.5px;
    color: var(--text-muted);
}

/* Payment Chips */
.chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 24px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-bg);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-deep);
    font-size: 14.5px;
}

.chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
}

/* Notice Box / Callout */
.notice-box {
    background: #fffdf5;
    border-left: 4px solid var(--accent-gold);
    border-top: 1px solid #fef3c7;
    border-right: 1px solid #fef3c7;
    border-bottom: 1px solid #fef3c7;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 15px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.dmplay-faq {
    max-width: 900px;
    margin: 35px auto 40px;
}

.dmplay-faq-title {
    text-align: center;
    font-size: 28px;
    color: var(--primary-deep);
    margin-bottom: 24px;
}

.dmplay-faq details {
    background: var(--rose-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.dmplay-faq details[open] {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-sm);
}

.dmplay-faq summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 16px 48px 16px 18px;
    color: var(--primary-deep);
    font-size: 16px;
    font-weight: 700;
    background: var(--rose-bg);
    user-select: none;
    transition: background-color 0.2s ease;
}

.dmplay-faq summary:hover {
    background: #fee2e2;
}

.dmplay-faq summary::-webkit-details-marker {
    display: none;
}

.dmplay-faq summary::after {
    content: "+";
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--primary-deep);
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.dmplay-faq details[open] summary::after {
    content: "−";
    background: var(--accent-gold-dark);
    color: #ffffff;
}

.dmplay-faq .faq-answer {
    padding: 16px 18px 18px;
    background: #ffffff;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
}

.dmplay-faq .faq-answer p {
    margin: 0;
}

/* Site Footer */
.site-footer {
    background-color: var(--dark-bg);
    color: #fce7e7;
    margin-top: auto;
}

.footer-top {
    padding: 45px 0 35px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-content-center {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.footer-widget h5 {
    color: #ffffff;
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
}

.footer-widget p {
    color: #d1b8b9;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.footer-logo-wrap {
    text-align: center;
    margin-bottom: 14px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* Bottom Footer Bar */
.footer-bottom {
    background-color: var(--dark-footer);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 14px;
    color: #a88a8c;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #fecaca;
    font-size: 13.5px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--accent-gold);
}

/* Responsive Mobile Adjustments */
@media (max-width: 921px) {
    .site-logo {
        height: 44px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .btn-header {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hamburger-btn {
        width: 40px;
        height: 40px;
    }
    
    .site-logo {
        height: 38px;
    }
    
    .hero-avatar {
        width: 160px;
        height: 160px;
    }
    
    .btn-cta-dotted {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 21px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .dmplay-faq {
        margin: 25px 0;
    }
    
    .dmplay-faq-title {
        font-size: 22px;
    }
    
    .dmplay-faq summary {
        padding: 14px 45px 14px 15px;
        font-size: 15px;
    }
    
    .dmplay-faq .faq-answer {
        padding: 13px 15px 15px;
        font-size: 14px;
    }
}
