/**
 * Spin Rush - Modern Redesigned Styles
 *
 * Unified Color Palette:
 * - Background: Navy/Dark (#0a0a0a, #1a1a2e, #16213e)
 * - Primary: Gold (#FFD700, #FFA500)
 * - Text: White/Light
 * - Accents: Gold tones only
 *
 * @package SpinRush
 * @since 1.0.0
 */

/* ==================================================
   MAIN CONTAINER - Modern Dark Theme
   ================================================== */

.sr-slot-wrapper {
    position: relative;
    max-width: 460px; /* ✅ Game 420px + container padding 20px×2 = 460px total */
    margin: 20px auto; /* ✅ Less margin (was 40px) */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.sr-slot-container {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 24px;
    padding: 15px 20px; /* ✅ MINIMAL padding for tight layout */
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 1px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

/* Elegant Top Border */
.sr-slot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #FFD700 25%,
        #FFA500 50%,
        #FFD700 75%,
        transparent 100%
    );
    z-index: 1;
}

/* Background Overlay - Dark when no custom image */
.sr-slot-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.75);
    z-index: 0;
}

/* Light overlay when custom background image present */
.sr-slot-container[style*="background-image"]::after {
    background: rgba(0, 0, 0, 0.4);
}

/* Ensure content is above overlay */
.sr-slot-container > * {
    position: relative;
    z-index: 1;
}

/* ==================================================
   HEADER - Logo & Title
   ================================================== */

.sr-slot-header {
    text-align: center;
    margin-bottom: 35px;
}

.sr-company-logo {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sr-company-logo img {
    max-width: 220px;
    max-height: 90px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.2));
}

.sr-slot-title {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 15px;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.sr-slot-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ==================================================
   SLOT MACHINE DISPLAY - Wrapper Approach
   ================================================== */

.sr-slot-machine {
    position: relative; /* CRITICAL for bulbs absolute positioning */
    margin: 0 auto 35px auto; /* Center the wrapper */
    box-sizing: border-box; /* ✅ CRITICAL: Include padding in width calculation */

    /* ✅ FORCE WIDTH - Not just max-width! */
    width: 420px; /* Canvas 380px + padding 20px×2 = 420px total */
    max-width: 100%; /* Allow shrinking on smaller screens */

    /* WRAPPER APPROACH: Frame is CSS padding + background */
    padding: 20px; /* Frame thickness - matches containerWidth calculation */
    background: linear-gradient(145deg, #FF6B35, #D9381E, #8B1E0F); /* Casino red frame */
    border-radius: 16px;

    /* Visual enhancements */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    overflow: visible; /* Allow SVG decorations to extend beyond padding */

    /* Optional: Add subtle border */
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/* ===================================================
   RESPONSIVE BREAKPOINTS - Complete System
   =================================================== */

/* Tablet (≤768px) */
@media (max-width: 768px) {
    .sr-slot-wrapper {
        max-width: 410px; /* ✅ Game 370px + container padding 20px×2 = 410px */
        margin: 15px auto; /* Less margin */
    }

    .sr-slot-container {
        padding: 15px 20px; /* ✅ Match desktop minimal padding */
    }

    .sr-slot-machine {
        padding: 15px; /* Smaller frame */
        width: 370px; /* ✅ FORCE: Canvas 340px + padding 15px×2 = 370px */
        max-width: 100%; /* Allow shrinking */
    }

    .sr-slot-canvas {
        max-width: 340px; /* Smaller canvas for tablet */
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .sr-slot-wrapper {
        max-width: 344px; /* ✅ Game 314px + container padding 15px×2 = 344px */
        margin: 10px auto; /* Minimal margin */
    }

    .sr-slot-container {
        padding: 12px 15px; /* ✅ Even tighter on mobile */
    }

    .sr-slot-machine {
        padding: 12px; /* Minimal frame */
        width: 314px; /* ✅ FORCE: Canvas 290px + padding 12px×2 = 314px */
        max-width: 100%; /* Allow shrinking */
    }

    .sr-slot-canvas {
        max-width: 290px; /* Mobile-optimized canvas */
    }
}

.sr-slot-canvas {
    max-width: 380px; /* ✅ Fit viewport - industry standard for 3×3 slots */
    width: 100%;
    aspect-ratio: 1 / 1; /* ✅ FORCE SQUARE - prevents stretching */
    display: block;
    border-radius: 12px;
    background: transparent;
    position: relative;
    z-index: 1; /* Canvas below SVG decorations (z-index: 2) */
    margin: 0 auto; /* Center the canvas */
    
    /* ✅ Sharper rendering for crisp symbols */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ==================================================
   OPT-IN FORM - Modern & Clean
   ================================================== */

.sr-optin-form {
    box-sizing: border-box; /* ✅ CRITICAL: Include padding and border in width */
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.12); /* ✅ FIXED: Match slot machine border thickness (was 2px) */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 420px; /* ✅ FORCE WIDTH - Match slot machine exactly */
    max-width: 100%; /* ✅ Allow shrinking on smaller screens */
    margin: 0 auto; /* ✅ Center the form */
}

.sr-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sr-form-field {
    display: flex;
    flex-direction: column;
}

.sr-form-field label {
    display: block;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sr-required {
    color: #FFA500;
}

.sr-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sr-input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1), 0 0 20px rgba(255, 215, 0, 0.15);
    transform: translateY(-1px);
}

.sr-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Input Error State */
.sr-input.sr-error {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

/* Validation Error Message */
.sr-error-message {
    display: block;
    color: #FF8A8A;
    font-size: 11px;
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* GDPR Checkbox */
.sr-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sr-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    cursor: pointer;
    text-transform: none;
}

.sr-form-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: #FFD700;
}

.sr-form-checkbox span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
}

/* ==================================================
   SPIN BUTTON - Eye-catching Gold Gradient
   ================================================== */

.sr-spin-button {
    width: 100%;
    padding: 15px 32px; /* ✅ Reduced from 18px 40px */
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 14px;
    color: #1a1a1a;
    font-size: 16px; /* ✅ Reduced from 19px */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 30px rgba(255, 215, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.sr-spin-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.sr-spin-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.sr-spin-button:hover::before {
    left: 100%;
}

.sr-spin-button:active {
    transform: translateY(-1px);
}

.sr-spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.sr-spin-button:disabled::before {
    display: none;
}

.sr-button-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sr-spin-button.sr-loading .sr-button-text {
    display: none;
}

.sr-spin-button.sr-loading .sr-button-spinner {
    display: flex;
}

/* Spinner Animation */
.sr-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(26, 26, 26, 0.2);
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: sr-spin 0.7s linear infinite;
}

@keyframes sr-spin {
    to { transform: rotate(360deg); }
}

/* ==================================================
   LOADING OVERLAY - Symbol Loading State
   ================================================== */

.sr-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.sr-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: sr-spin 0.8s linear infinite;
}

.sr-loading-text {
    color: #FFD700;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==================================================
   RESULT MODAL - Elegant & Modern
   ================================================== */

.sr-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: none;
}

.sr-modal.sr-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.sr-modal-content {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 24px;
    padding: 45px;
    max-width: 520px;
    width: 90%;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: sr-modal-appear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

@keyframes sr-modal-appear {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.sr-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

.sr-modal-body {
    text-align: center;
}

/* Result Icon */
.sr-result-icon {
    margin-bottom: 25px;
}

.sr-result-icon svg {
    animation: sr-icon-appear 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
}

@keyframes sr-icon-appear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.15) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* Result Title */
.sr-result-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 18px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.sr-result-lose .sr-result-title {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Result Message */
.sr-result-message {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin: 0 0 30px;
    line-height: 1.6;
}

/* Prize Display */
.sr-prize-display {
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 14px;
    padding: 24px;
    margin: 25px 0;
}

.sr-prize-display h4 {
    color: #FFD700;
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 700;
}

.sr-prize-display p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 16px;
}

/* Modal Buttons */
.sr-button {
    padding: 15px 36px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sr-button-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.sr-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.55);
}

.sr-button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sr-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-2px);
}

/* ==================================================
   WIN ANIMATIONS
   ================================================== */

.sr-win-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 16px;
}

.sr-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: sr-particle-fall 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

@keyframes sr-particle-fall {
    0% {
        top: -10px;
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: scale(0.3) rotate(720deg);
    }
}

/* ==================================================
   CASINO CHASING LIGHTS - SVG Frame & Bulbs
   ================================================== */

/* SVG Frame Container */
.sr-bulbs-container {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    display: block;
    /* SVG dimensions and positioning handled by JavaScript */
}

/* SVG Bulb - Base state (dim) */
.sr-bulb {
    transition: opacity 0.15s ease, transform 0.15s ease;
    cursor: default;
    /* SVG attributes: fill, opacity, stroke handled by JavaScript/SVG */
}

/* Responsive - SVG scales automatically with canvas */
@media (max-width: 768px) {
    /* Frame and bulbs scale proportionally */
}

@media (max-width: 480px) {
    /* Frame and bulbs scale proportionally */
}

/* Lit state - SVG bulbs with enhanced glow */
.sr-bulb.sr-lit {
    opacity: 1 !important;
}

/* Win state - All bulbs lit */
.sr-bulbs-container.sr-win .sr-bulb {
    opacity: 1 !important;
}

/* ==================================================
   LOADING OVERLAY
   ================================================== */

.sr-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-loading-spinner {
    text-align: center;
    color: #fff;
}

.sr-spinner-large {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 215, 0, 0.2);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: sr-spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.sr-loading-spinner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

@media (max-width: 768px) {
    .sr-slot-container {
        padding: 15px 20px; /* ✅ Match desktop minimal padding */
        border-radius: 20px;
    }

    .sr-slot-title {
        font-size: 32px;
    }

    .sr-slot-subtitle {
        font-size: 15px;
    }

    .sr-optin-form {
        padding: 28px;
        width: 370px; /* ✅ FORCE: Match slot machine width */
        max-width: 100%; /* Allow shrinking */
    }

    .sr-spin-button {
        padding: 16px 32px;
        font-size: 17px;
    }

    .sr-modal-content {
        padding: 35px 25px;
    }

    .sr-result-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .sr-slot-container {
        padding: 12px 15px; /* ✅ Even tighter on mobile */
    }

    .sr-slot-title {
        font-size: 28px;
    }

    .sr-optin-form {
        padding: 22px;
        width: 314px; /* ✅ FORCE: Match slot machine width */
        max-width: 100%; /* Allow shrinking */
    }

    .sr-form {
        gap: 16px;
    }

    .sr-spin-button {
        font-size: 15px; /* ✅ Mobile: Smaller than desktop */
        padding: 13px 24px;
    }

    /* ✅ Loading Text - Mobile */
    .sr-loading-text {
        font-size: 12px; /* Reduced from 14px */
    }

    /* ✅ Spinner - Mobile */
    .sr-spinner {
        width: 40px; /* Reduced from 50px */
        height: 40px;
    }

    /* ✅ Form Labels - Mobile */
    .sr-label,
    .sr-form-field label {
        font-size: 11px; /* Reduced from 12px */
    }

    /* ✅ Input Fields - Mobile */
    .sr-input {
        font-size: 14px; /* Reduced from 15px */
        padding: 12px 14px;
    }

    /* ✅ Slot Title - Mobile */
    .sr-slot-title {
        font-size: 24px; /* Reduced for mobile */
    }

    /* ✅ Slot Subtitle - Mobile */
    .sr-slot-subtitle {
        font-size: 13px;
    }

    /* ✅ Modal Titles - Mobile */
    .sr-result-title {
        font-size: 22px; /* Reduced for mobile */
    }

    .sr-result-message {
        font-size: 14px;
    }
}

/* ==================================================
   TABLET (≤768px) - Medium Font Adjustments
   ================================================== */

@media (max-width: 768px) {
    /* ✅ Spin Button - Tablet */
    .sr-spin-button {
        font-size: 15px;
        padding: 14px 30px;
    }

    /* ✅ Loading Text - Tablet */
    .sr-loading-text {
        font-size: 13px;
    }

    /* ✅ Spinner - Tablet */
    .sr-spinner {
        width: 45px;
        height: 45px;
    }

    /* ✅ Form Elements - Tablet */
    .sr-input {
        font-size: 14px;
    }

    .sr-label,
    .sr-form-field label {
        font-size: 11px;
    }

    /* ✅ Titles - Tablet */
    .sr-slot-title {
        font-size: 28px;
    }

    .sr-result-title {
        font-size: 24px;
    }
}

/* ==================================================
   VIEWPORT FIT - Canvas + Form Visible on Load
   ================================================== */

/* Ensure game fits in viewport without scroll on initial load */
.sr-slot-wrapper {
    /* Max height to fit viewport (with breathing room) */
    max-height: 95vh;
}

/* Scale down container if viewport is small */
@media (max-height: 850px) {
    .sr-slot-wrapper {
        max-width: 420px; /* Slightly smaller */
    }

    .sr-slot-machine {
        width: 380px; /* Reduce canvas container */
    }

    .sr-slot-canvas {
        max-width: 344px; /* Smaller canvas */
    }

    .sr-optin-form {
        width: 380px; /* Match machine width */
        padding: 28px;
    }
}

/* Further scale for very small viewports */
@media (max-height: 700px) {
    .sr-slot-wrapper {
        max-width: 380px;
        margin: 10px auto;
    }

    .sr-slot-header {
        margin-bottom: 20px;
    }

    .sr-slot-machine {
        width: 340px;
        margin-bottom: 20px;
    }

    .sr-slot-canvas {
        max-width: 310px;
    }

    .sr-optin-form {
        width: 340px;
        padding: 24px;
    }

    .sr-slot-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
}
