/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{text-decoration: none;
    color: currentcolor;}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1e293b 0%, #7c3aed 50%, #1e293b 100%);
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    width: 32px;
    height: 32px;
    color: #fbbf24;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-subtitle {
    font-size: 0.875rem;
    color: #c4b5fd;
    display: none;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fbbf24;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6d28d9, #db2777);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #7c3aed;
}

.btn-secondary:hover {
    background: #7c3aed;
}

/* Hero Section */
.hero {
    background-image: url('../images/hero-background-rwa.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 64px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(124, 58, 237, 0.6) 50%, rgba(30, 41, 59, 0.8) 100%);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #c4b5fd;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #c4b5fd;
    font-size: 0.875rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-hero-secondary {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #7c3aed;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #c4b5fd;
}

.section-description {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* Daily Section */
.daily-section {
    padding: 5rem 0;
    background: #0f172a;
}

.daily-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.daily-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.daily-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.daily-description {
    color: #c4b5fd;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.daily-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.daily-trading {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
}

.trading-stats {
    margin-bottom: 2rem;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-col {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-value.green {
    color: #10b981;
}

.stat-desc {
    color: #9ca3af;
    font-size: 0.875rem;
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 0.75rem;
    background: #374151;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.countdown-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.countdown-label {
    color: #9ca3af;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-item {
    background: #ef4444;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: bold;
    min-width: 2rem;
    text-align: center;
}

.countdown-separator {
    color: #ffffff;
    font-weight: bold;
}

.trading-actions {
    display: flex;
    gap: 1rem;
}

.btn-buy {
    flex: 1;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
}

.btn-preview {
    flex: 1;
    background: transparent;
    color: #c4b5fd;
    border: 1px solid #7c3aed;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
}

.more-books {
    text-align: center;
    margin-top: 3rem;
}

.btn-more {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000000;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.btn-more:hover {
    transform: scale(1.05);
}

/* Market Section */
.market-section {
    padding: 5rem 0;
    background: #1e293b;
}

.market-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.market-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefits-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #c4b5fd;
    font-size: 0.875rem;
}

.rwa-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rwa-info h4 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.rwa-info ul {
    list-style: none;
    color: #c4b5fd;
}

.rwa-info li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.rwa-info li::before {
    content: '•';
    color: #fbbf24;
    position: absolute;
    left: 0;
}

.btn-market {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
}

/* Store Section */
.store-section {
    padding: 5rem 0;
    background: #0f172a;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.store-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.store-item:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-4px);
}

.store-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.store-item h3 {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.store-item p {
    color: #c4b5fd;
    margin-bottom: 1.5rem;
}

.store-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-price {
    color: #fbbf24;
    font-weight: bold;
}

.btn-store {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Author Section */
.author-section {
    padding: 5rem 0;
    background: #1e293b;
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.author-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.author-benefits h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 2rem;
}

.author-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-number {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem;
    border-radius: 1rem;
    min-width: 4rem;
    text-align: center;
}

.benefit-icon-small {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
    margin-top: 0.25rem;
}

.benefit-text h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: #c4b5fd;
    font-size: 0.875rem;
}

.author-requirements {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.author-requirements h4 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.author-requirements ul {
    list-style: none;
}

.author-requirements li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c4b5fd;
    margin-bottom: 0.5rem;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

.author-actions {
    display: flex;
    gap: 1rem;
}

.btn-author-primary {
    flex: 1;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.btn-author-secondary {
    flex: 1;
    background: transparent;
    color: #c4b5fd;
    border: 1px solid #7c3aed;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: bold;
}

/* Copyright Section */
.copyright-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #7c3aed, #1e293b);
}

.copyright-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.copyright-types h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 2rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.type-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.type-item:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.type-emoji {
    font-size: 1.5rem;
}

.type-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.type-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.type-item p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.copyright-process {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.copyright-process h4 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-list {
    list-style: none;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #c4b5fd;
    margin-bottom: 0.75rem;
}

.process-icon {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.copyright-actions {
    display: flex;
    gap: 1rem;
}

.btn-copyright-primary {
    flex: 1;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.btn-copyright-secondary {
    flex: 1;
    background: transparent;
    color: #60a5fa;
    border: 1px solid #3b82f6;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: bold;
}

.copyright-service {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
}

.copyright-service h3 {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    text-align: center;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-title.yellow {
    color: #fbbf24;
}

.service-title.green {
    color: #10b981;
}

.service-title.blue {
    color: #3b82f6;
}

.service-title.purple {
    color: #c4b5fd;
}

.service-item p {
    color: #c4b5fd;
    font-size: 0.875rem;
}

.contact-email {
    color: #60a5fa !important;
    font-weight: 600 !important;
}

.contact-note {
    color: #9ca3af !important;
    font-size: 0.75rem !important;
    margin-top: 0.25rem !important;
}

/* Crypto Section */
.crypto-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b, #7c3aed);
}

.crypto-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.crypto-item {
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.crypto-item:hover {
    transform: scale(1.05);
}

.crypto-item.orange-yellow {
    background: linear-gradient(135deg, #f97316, #fbbf24);
}

.crypto-item.blue-purple {
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
}

.crypto-item.green-teal {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.crypto-item.blue-cyan {
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
}

.crypto-item.yellow-orange {
    background: linear-gradient(135deg, #fbbf24, #f97316);
}

.crypto-item.blue-indigo {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.crypto-item.pink-rose {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.crypto-item.blue-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.crypto-item.purple-pink {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.crypto-item.red-orange {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

/* Footer */
.footer {
    background: #1e293b;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 2rem;
    height: 2rem;
    color: #fbbf24;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: #7c3aed;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-content h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-content ul {
    list-style: none;
}

.footer-content li {
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #fbbf24;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-organizations {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.org-header {
    text-align: center;
    margin-bottom: 2rem;
}

.org-header h3 {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.org-header p {
    color: #c4b5fd;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
}

.org-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-orgs {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-subtitle {
        display: block;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .daily-content,
    .market-content,
    .author-content,
    .copyright-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid,
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .org-grid {
        grid-template-columns: 1fr;
    }
    
    .trading-actions,
    .author-actions,
    .copyright-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

