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

body {
    font-family: 'Montserrat', sans-serif;
    color: #1E5631;
    overflow-x: hidden;
}

/* Utility Classes */
.text-pink {
    color: #FF6B6B;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(45deg, rgba(30, 86, 49, 0.1), rgba(46, 196, 182, 0.1)); 
    }
    50% { 
        background: linear-gradient(45deg, rgba(46, 196, 182, 0.1), rgba(255, 107, 107, 0.1)); 
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.8), 0 0 30px rgba(255, 107, 107, 0.6);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    animation-fill-mode: both;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    opacity: 1;
}

/* Navigation */
.custom-navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: all 0.5s ease;
    animation: fadeInUp 1s ease-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2EC4B6;
    transition: all 0.4s ease;
    animation: bounceIn 1.2s ease-out 0.2s both;
}

.logo-img:hover {
    transform: rotate(10deg) scale(1.1);
    border-color: #FF6B6B;
    animation: pulse 1s infinite;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    color: #1E5631;
    animation: fadeInLeft 1s ease-out 0.3s both;
    transition: all 0.3s ease;
}

.navbar-nav {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.navbar-nav .nav-link {
    color: #1E5631 !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}

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

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    color: #FF6B6B !important;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.6);
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
}

.dex-logo {
    width: 50px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #2EC4B6;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #2EC4B6;
    background: white;
    margin: 0 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, #2EC4B6, #FF6B6B);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-btn:hover::before {
    width: 100%;
    height: 100%;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #FF6B6B;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('/bg/nurse.gif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 86, 49, 0.1), rgba(46, 196, 182, 0.1));
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-content {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1E5631, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    line-height: 1.1;
    animation: fadeInLeft 1.2s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 2rem;
    color: #2EC4B6;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: fadeInLeft 1.2s ease-out 0.7s both;
}

.slogan-container {
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    animation: fadeInLeft 1.2s ease-out 0.9s both;
}

.rotating-slogan {
    font-size: 1.4rem;
    color: #FF6B6B;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
    animation: glow 3s ease-in-out infinite alternate;
}

.btn-hero {
    background: linear-gradient(45deg, #2EC4B6, #1E5631);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.4);
    transition: all 0.4s ease;
    width: 300px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 1.1s both;
}

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

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

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
    box-shadow: 0 12px 30px rgba(46, 196, 182, 0.6);
    background: linear-gradient(45deg, #FF6B6B, #2EC4B6);
}

/* Main Content */
.main-content {
    position: relative;
    background-image: url('/graphics/bg.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.main-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.233);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    color: #1E5631;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2EC4B6, #FF6B6B);
    border-radius: 2px;
}

.content-card {
    background: rgba(255, 255, 255, 0.52);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    backdrop-filter: blur(10px);
}

/* About Section */
.about-content {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #1E5631;
    font-weight: 400;
}

.about-content .lead {
    font-weight: 600;
    color: #2EC4B6;
}

.about-content .text-success {
    color: #2EC4B6 !important;
    font-weight: 500;
}

.about-content .text-pink {
    color: #FF6B6B !important;
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    opacity: 1;
    animation: float 6s ease-in-out;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 1.5s; }
.feature-card:nth-child(3) { animation-delay: 3s; }
.feature-card:nth-child(4) { animation-delay: 4.5s; }

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(46, 196, 182, 0.3);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(46, 196, 182, 0.3));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 15px rgba(255, 107, 107, 0.4));
}

.feature-title {
    color: #1E5631;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #FF6B6B;
    transform: translateY(-3px);
}

.feature-desc {
    color: #555;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-desc {
    color: #333;
}

/* Contract Address Section */
.contract-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.contract-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #2EC4B6;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contract-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 196, 182, 0.1), transparent);
    transition: left 0.8s ease;
}

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

.contract-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 196, 182, 0.3);
    border-color: #FF6B6B;
}

.contract-header {
    text-align: center;
    margin-bottom: 30px;
}

.contract-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1E5631;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #1E5631, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contract-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.contract-address-container {
    position: relative;
    margin-bottom: 25px;
}

.contract-address {
    background: rgba(46, 196, 182, 0.1);
    border: 2px solid #2EC4B6;
    border-radius: 15px;
    padding: 20px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #1E5631;
    word-break: break-all;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contract-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 196, 182, 0.05), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contract-address:hover::before {
    opacity: 1;
}

.copy-btn {
    background: linear-gradient(45deg, #2EC4B6, #1E5631);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

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

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

.copy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #FF6B6B, #2EC4B6);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.copy-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.copy-btn.copied {
    background: linear-gradient(45deg, #28a745, #20c997);
    animation: copySuccess 0.6s ease;
}

@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.contract-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.contract-warning-text {
    font-size: 0.9rem;
    color: #d63384;
    font-weight: 500;
    margin: 0;
}

/* Copy Icon Animation */
.copy-icon {
    transition: all 0.3s ease;
}

.copy-btn:hover .copy-icon {
    transform: scale(1.2);
}
.tokenomics-info {
    color: #1E5631;
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 400;
}

.tokenomics-info p {
    margin-bottom: 10px;
}

.tokenomics-info strong {
    color: #2EC4B6;
    font-weight: 600;
}

/* Roadmap */
.roadmap-card {
    background: rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(46, 196, 182, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out both;
}

.roadmap-card:nth-child(1) { animation-delay: 0.2s; }
.roadmap-card:nth-child(2) { animation-delay: 0.4s; }
.roadmap-card:nth-child(3) { animation-delay: 0.6s; }
.roadmap-card:nth-child(4) { animation-delay: 0.8s; }

.roadmap-card:hover {
    border-color: #FF6B6B;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.roadmap-img {
    display: flex;
    max-width: 100%;
    width: auto;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.roadmap-card:hover .roadmap-img img {
    transform: scale(1.1) rotate(5deg);
}

.roadmap-card div {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: auto;
}

.roadmap-phase {
    color: #1E5631;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.roadmap-card:hover .roadmap-phase {
    color: #FF6B6B;
    transform: translateY(-2px);
}

.roadmap-list {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
    padding-left: 10px;
    list-style: none;
}

.roadmap-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.roadmap-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2EC4B6;
    font-weight: bold;
}

.roadmap-card:hover .roadmap-list li {
    opacity: 1;
    transform: translateX(5px);
}

/* How to Buy Section */
#buy {
    background: transparent;
}

.buy-step-card {
    background: rgba(255, 255, 255, 0.52);
    border: 2px solid rgba(46, 196, 182, 0.6);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out both;
}

.buy-step-card:nth-child(1) { animation-delay: 0.1s; }
.buy-step-card:nth-child(2) { animation-delay: 0.3s; }
.buy-step-card:nth-child(3) { animation-delay: 0.5s; }
.buy-step-card:nth-child(4) { animation-delay: 0.7s; }

.buy-step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #FF6B6B;
}

.step-image-container {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(46, 196, 182, 0.4);
    transition: all 0.4s ease;
}

.buy-step-card:hover .step-image-container {
    transform: scale(1.1) rotate(5deg);
    border-color: #FF6B6B;
}

.step-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    z-index: 99;
    transition: all 0.4s ease;
}

.step-content {
    flex: 1;
    color: #1E5631;
}

.step-title {
    color: #1E5631;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.buy-step-card:hover .step-title {
    color: #FF6B6B;
    transform: translateX(10px);
}

.step-description {
    color: #555;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.buy-step-card:hover .step-description {
    color: #333;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 30px;
    border-top: 3px solid rgba(46, 196, 182, 0.5);
}

.footer-title {
    font-size: 2.5rem;
    color: #1E5631;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-size: 1.6rem;
    color: #2EC4B6;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: #1E5631;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B6B;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
    transform: translateY(-2px);
}

.footer-copyright {
    color: #666;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

/* Enhanced Button Styles */
.btn-success {
    background: linear-gradient(45deg, #2EC4B6, #1E5631);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 25px;
    padding: 12px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-success:hover {
    background: linear-gradient(45deg, #FF6B6B, #2EC4B6);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* Responsive Design for Buy Steps */
@media (max-width: 768px) {
    .buy-step-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .step-image-container {
        width: 100px;
        height: 100px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .buy-step-card {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .step-image-container {
        width: 80px;
        height: 80px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding-left: 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        font-size: 1.2rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .footer-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .rotating-slogan {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .tokenomics-info {
        font-size: 1.1rem;
    }
}

/* Custom Bootstrap overrides */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional hover effects */
.card:hover {
    transition: all 0.3s ease;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}