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

:root {
    --primary-color: #5b21b6;
    --primary-light: #7c3aed;
    --primary-dark: #4c1d95;
    --secondary-color: #2563eb;
    --accent-color: #06b6d4;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --background: #0f172a;
    --background-secondary: #1e293b;
    --background-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --border-color: #475569;
    --shadow: rgba(0, 0, 0, 0.4);
    --shadow-lg: rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 20px;
}

.header-content {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 30px;
    box-shadow: 0 20px 60px var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.header-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(51, 65, 85, 0.5) 100%);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover {
    background: rgba(91, 33, 182, 0.15);
    border-color: rgba(91, 33, 182, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(91, 33, 182, 0.2);
    color: var(--text-primary);
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-color: #7c3aed;
    box-shadow: 0 8px 24px rgba(91, 33, 182, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.main-content {
    min-height: 600px;
    animation: fadeIn 0.6s ease;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.6) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 30px 80px var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(91, 33, 182, 0.3);
}

.card h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.json-textarea,
.url-textarea,
.base64-textarea,
.text-textarea {
    width: 100%;
    min-height: 200px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.json-textarea:focus,
.url-textarea:focus,
.base64-textarea:focus,
.text-textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
    box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
}

/* JSON Tabs */
.json-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.json-tab-btn {
    padding: 14px 26px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    margin-bottom: -2px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.json-tab-btn:hover {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 10px 10px 0 0;
}

.json-tab-btn.active {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
}

.json-tab-content {
    display: none;
}

.json-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* JSON Viewer Styles */
.json-viewer-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    max-height: 700px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.7;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.json-viewer-container::-webkit-scrollbar {
    width: 10px;
}

.json-viewer-container::-webkit-scrollbar-track {
    background: rgba(91, 33, 182, 0.05);
    border-radius: 10px;
}

.json-viewer-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(91, 33, 182, 0.3);
}

.json-viewer-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8c48f2 0%, #6d28d9 100%);
}

.json-tree {
    color: var(--text-primary);
}

.json-key {
    color: #fbbf24;
    font-weight: 700;
}

.json-string {
    color: #34d399;
}

.json-number {
    color: #f87171;
}

.json-boolean {
    color: #60a5fa;
    font-weight: 600;
}

.json-null {
    color: #9ca3af;
    font-style: italic;
}

.json-bracket {
    color: #a78bfa;
    font-weight: 700;
}

.json-tree-item {
    margin-left: 28px;
    line-height: 1.8;
    padding: 6px 0;
    border-left: 3px solid transparent;
    padding-left: 12px;
    transition: all 0.2s ease;
}

.json-tree-item:hover {
    border-left-color: var(--primary-light);
    background: rgba(91, 33, 182, 0.1);
    border-radius: 6px;
}

.json-toggle {
    background: transparent;
    border: none;
    color: var(--primary-light);
    cursor: pointer;
    font-weight: bold;
    padding: 2px 8px;
    margin-right: 4px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.json-toggle:hover {
    color: var(--accent-color);
    background: rgba(91, 33, 182, 0.2);
}

.json-toggle.collapsed::before {
    content: '▶';
}

.json-toggle.expanded::before {
    content: '▼';
}

.json-content {
    margin-left: 12px;
    border-left: 2px solid rgba(91, 33, 182, 0.4);
    padding-left: 12px;
    transition: max-height 0.3s ease;
}

.json-content.hidden {
    display: none;
}

/* Scrollbar styling for JSON container */
.json-viewer-container::-webkit-scrollbar-thumb:active {
    background: #4f46e5;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(91, 33, 182, 0.3);
    border: 1px solid rgba(91, 33, 182, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8c48f2 0%, #6d28d9 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(91, 33, 182, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 33, 182, 0.15);
    color: var(--text-primary);
}

.btn-icon {
    background: var(--primary-light);
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.2);
}

.btn-icon:hover {
    background: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(91, 33, 182, 0.3);
}

.error-message {
    color: var(--error);
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-left: 4px solid var(--error);
    border-radius: 10px;
    margin-top: 15px;
    display: none;
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.error-message.show {
    display: block;
}

/* IP Checker Styles */
.ip-display {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 24px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91, 33, 182, 0.2);
}

.ip-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    width: 100%;
}

.ip-item {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.15) 0%, rgba(37, 99, 235, 0.08) 100%);
    padding: 20px;
    border-radius: 14px;
    border-left: 4px solid var(--primary-light);
    transition: all 0.3s ease;
}

.ip-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(91, 33, 182, 0.15);
    border-left-color: var(--accent-color);
}

.ip-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ip-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    word-break: break-all;
}

.loading {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Speed Test Styles */
.speed-test-container {
    text-align: center;
}

.speedometer-wrapper {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speedometer {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 320px;
    margin: 0 auto;
}

.speedometer-svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

#speed-progress-arc {
    transition: stroke-dashoffset 0.3s ease;
    transform-origin: 150px 150px;
}

#speedometer-needle {
    transform-origin: 150px 150px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.speed-value-display {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.speed-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(91, 33, 182, 0.3);
}

.speed-unit-large {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.speed-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-box {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    padding: 24px;
    border-radius: 16px;
    border-top: 4px solid var(--primary-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(91, 33, 182, 0.15);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(91, 33, 182, 0.15);
    border-top-color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-light);
}

/* Password Generator Styles */
.password-container {
    max-width: 650px;
    margin: 0 auto;
}

.slider {
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(91, 33, 182, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(91, 33, 182, 0.5);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.4);
    transition: all 0.3s ease;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.08) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(91, 33, 182, 0.15);
    font-weight: 500;
}

.checkbox-group label:hover {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: var(--primary-light);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-light);
}

.password-display {
    display: flex;
    gap: 12px;
}

.password-input {
    flex: 1;
    padding: 16px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
}

.strength-meter {
    margin-top: 20px;
    height: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.strength-meter::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
    transition: all 0.3s ease;
}

.strength-meter.weak::after {
    width: 33%;
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.strength-meter.medium::after {
    width: 66%;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.strength-meter.strong::after {
    width: 100%;
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

/* Text Tools Styles */
.text-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.08) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 14px;
    border: 1px solid rgba(91, 33, 182, 0.1);
}

.text-stats span {
    color: var(--text-secondary);
    font-weight: 500;
}

.text-stats strong {
    color: var(--primary-light);
    font-weight: 700;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.05rem;
    }

    .header-content {
        padding: 35px 20px;
    }

    .nav-tabs {
        padding: 15px;
        gap: 8px;
    }

    .tab-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .card {
        padding: 28px 20px;
    }

    .card h2 {
        font-size: 1.8rem;
    }

    .speedometer {
        max-width: 400px;
        height: 240px;
    }

    .speed-number-large {
        font-size: 2.8rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .ip-info {
        grid-template-columns: 1fr;
    }

    .speed-stats {
        grid-template-columns: 1fr;
    }

    .json-tabs {
        flex-direction: column;
        gap: 4px;
    }

    .json-tab-btn {
        width: 100%;
        text-align: left;
        padding: 12px 16px;
        border-bottom: none;
        margin-bottom: 0;
        border-left: 4px solid transparent;
    }

    .json-tab-btn.active {
        border-left-color: var(--primary-light);
        border-bottom: none;
    }

    .json-viewer-container {
        max-height: 400px;
        padding: 16px;
        font-size: 0.85rem;
    }

    .json-tree-item {
        margin-left: 16px;
    }

    .stat-box {
        padding: 18px;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .speed-unit-large {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }

    .header {
        padding: 30px 12px;
    }

    .header-content {
        padding: 25px 15px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .card {
        padding: 18px 12px;
    }

    .card h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .speedometer {
        max-width: 320px;
        height: 200px;
    }

    .speed-number-large {
        font-size: 2rem;
    }

    .json-viewer-container {
        max-height: 350px;
        padding: 12px;
        font-size: 0.8rem;
    }

    .input-group label {
        font-size: 0.85rem;
    }

    .button-group {
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .stat-box {
        padding: 15px;
    }

    .footer {
        padding: 25px 12px;
        margin-top: 40px;
    }
}

