/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Section Subtitle Styling */
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.8), transparent);
    animation: navScan 3s ease-in-out infinite;
}

@keyframes navScan {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    position: relative;
}

.nav-container .mobile-menu-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-logo .logo {
    max-height: 270px;
    width: auto;
    max-width: 1200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.cta-btn {
    background: #2563eb;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Mobile menu button - hidden by default */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    min-width: 40px;
    min-height: 40px;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 120px 0 40px 0; /* Account for fixed navbar height (100px + padding) */
    box-sizing: border-box;
}

/* Mobile-specific hero background adjustments */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-attachment: scroll; /* Better performance on mobile */
    }
}

/* Mobile landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 60px 0 10px 0;
        min-height: auto;
        height: auto;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-bottom: 1rem;
        gap: 1rem;
    }
    
    .chart-container {
        height: 100px;
        padding: 1rem;
    }
}

/* Technological Effects */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    animation: techGlow 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes techGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Matrix-style background effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: matrixMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes matrixMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.4);
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.6); }
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 200px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.chart-bar {
    width: 30px;
    background: linear-gradient(to top, #ffd700, #ffed4e);
    border-radius: 4px;
    animation: growUp 1.5s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--final-height); }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2); }
}

.bitcoin {
    background: #f7931a;
    color: white;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.ethereum {
    background: #627eea;
    color: white;
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.chart {
    background: #10b981;
    color: white;
    top: 50%;
    right: -10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8fafc;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .nav-container .nav-links.mobile-open {
        display: flex !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 80px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 1.5rem !important;
        padding: 2rem 1.5rem !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
        border-radius: 0 !important;
        z-index: 999999 !important;
        animation: slideDown 0.3s ease !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        pointer-events: all !important;
    }

    .nav-container .nav-links.mobile-open a {
        display: block !important;
        width: 100% !important;
        padding: 1rem !important;
        text-align: center !important;
        font-size: 1.2rem !important;
        color: #333 !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }

    .nav-container .nav-links.mobile-open a:last-child {
        border-bottom: none !important;
    }

    .nav-container .nav-links.mobile-open a:hover {
        color: #2563eb !important;
        background: rgba(37, 99, 235, 0.1) !important;
    }

    .nav-container .nav-links.mobile-open .cta-btn {
        background: #2563eb !important;
        color: white !important;
        border-radius: 25px !important;
        margin-top: 1rem !important;
    }

    .nav-container .nav-links.mobile-open .cta-btn:hover {
        background: #1d4ed8 !important;
        transform: translateY(-2px) !important;
    }
    
    .nav-links.mobile-open a {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        color: #333;
        text-decoration: none;
    }
    
    .nav-links.mobile-open a:last-child {
        border-bottom: none;
    }
    
    .nav-links.mobile-open a:hover {
        padding-left: 1rem;
        color: #2563eb;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-menu-btn:hover {
        background: rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 0 15px;
        height: 80px;
        position: relative;
        z-index: 9997;
    }
    
    .nav-logo .logo {
        max-height: 200px;
    }
    
    .hero {
        padding: 100px 0 60px 0;
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .chart-container {
        height: 150px;
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .chart-bar {
        width: 25px;
    }
    
    .floating-icons .icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* Section titles mobile adjustments */
    .features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0 15px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-bottom: 2rem;
    }
    
    /* Footer mobile adjustments */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-section h3, .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 15px 0;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 50px 0;
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
    }
    
    .hero-container {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        max-width: 260px;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .chart-container {
        height: 120px;
        padding: 1rem;
        max-width: 250px;
    }
    
    .chart-bar {
        width: 20px;
    }
    
    .floating-icons .icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Section titles for smaller mobile screens */
    .features h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        padding: 0 5px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Footer adjustments for smaller screens */
    .footer-section h3, .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding: 1rem 10px 0;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 70px 0 40px 0;
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        margin-bottom: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 240px;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .chart-container {
        height: 100px;
        max-width: 220px;
    }
    
    /* Section titles for smallest mobile screens */
    .features h2 {
        font-size: 1.6rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    /* Footer adjustments for smallest screens */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-section h3, .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding: 0.8rem 10px 0;
    }
}