/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography - Cartoon Style */
.hero-title, .section-title, .brand-text {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle, .lead {
    font-family: 'Comic Neue', cursive;
    font-weight: 400;
}

/* Custom Navigation */
.custom-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.brand-text {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    margin-left: 0.5rem;
}

.navbar-nav .nav-link {
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    color: #fff !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: -1;
}

.three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 1s ease-out;
}

.glimmer-text {
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff, #f0f0f0);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glimmer 3s ease-in-out infinite;
}

@keyframes glimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

/* Cartoon-style Buttons */
.cartoon-btn {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cartoon-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-primary.cartoon-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-color: #ff6b6b;
}

.btn-outline-light.cartoon-btn {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light.cartoon-btn:hover {
    background: #fff;
    color: #333;
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.about-section {
    background: #f8f9fa;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.wobble-animation {
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg) scale(1.02); }
    75% { transform: rotate(-1deg) scale(0.98); }
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.feature-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.feature-card h4 {
    font-family: 'Fredoka One', cursive;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    font-family: 'Comic Neue', cursive;
    color: #666;
    font-size: 1.1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Wallet Integration Styles */
.wallet-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white !important;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white !important;
}

.wallet-btn.connected {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.wallet-btn.connecting {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.wallet-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.wallet-info {
    text-align: right;
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
}

.balance-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.balance-info small {
    color: #666;
    font-weight: 600;
}

.balance-info span {
    color: #667eea;
    font-weight: 700;
    font-size: 1rem;
}

.swap-btn .btn-connect {
    font-size: 1rem;
}

.swap-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.swap-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Wallet Modal */
.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wallet-modal.show {
    opacity: 1;
    visibility: visible;
}

.wallet-modal-content {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    font-family: 'Comic Neue', cursive;
}

.wallet-modal.show .wallet-modal-content {
    transform: scale(1);
}

.wallet-modal h3 {
    font-family: 'Fredoka One', cursive;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.wallet-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.wallet-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
}

.wallet-option img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    border-radius: 8px;
}

.wallet-option-info h4 {
    margin: 0;
    color: #333;
    font-weight: 700;
}

.wallet-option-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f0f0f0;
    color: #333;
}

/* Transaction Status */
.transaction-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    font-family: 'Comic Neue', cursive;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.transaction-status.show {
    transform: translateX(0);
}

.transaction-status.success {
    border-left: 4px solid #28a745;
}

.transaction-status.error {
    border-left: 4px solid #dc3545;
}

.transaction-status.pending {
    border-left: 4px solid #ffc107;
}

/* Network Status */
.network-status {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.network-status.mainnet {
    border: 2px solid #28a745;
    color: #28a745;
}

.network-status.devnet {
    border: 2px solid #ffc107;
    color: #e67e22;
}

.network-status.testnet {
    border: 2px solid #17a2b8;
    color: #17a2b8;
}

/* Responsive Wallet Styles */
@media (max-width: 768px) {
    .wallet-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
    
    .wallet-status {
        flex-direction: row;
        align-items: center;
    }
    
    .wallet-info {
        text-align: left;
        font-size: 0.8rem;
    }
    
    .balance-info {
        margin-bottom: 0.2rem;
    }
    
    .wallet-modal-content {
        padding: 1.5rem;
    }
    
    .network-status {
        top: 70px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Web3 Integration Additional Styles */
.web3-info {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.web3-info small {
    font-family: 'Comic Neue', cursive;
    color: #666;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.web3-info .fas {
    color: #28a745;
}

/* Loading states */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    font-family: 'Comic Neue', cursive;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.loading-spinner {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

/* Transaction history */
.transaction-history {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    display: none;
}

.transaction-history.show {
    display: block;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-type {
    font-weight: 600;
    color: #333;
}

.transaction-amount {
    color: #667eea;
    font-weight: 700;
}

.transaction-status.success .transaction-type {
    color: #28a745;
}

.transaction-status.error .transaction-type {
    color: #dc3545;
}

.swap-widget {
    background: #fff;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.swap-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    background-size: 300% 300%;
    border-radius: 25px;
    z-index: -1;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.swap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.token-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.token-details h3 {
    font-family: 'Fredoka One', cursive;
    color: #333;
    margin: 0;
    font-size: 1.8rem;
}

.token-price {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    font-size: 1.2rem;
}

.token-change {
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.token-change.positive {
    color: #28a745;
}

.token-change.negative {
    color: #dc3545;
}

.refresh-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.refresh-btn:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.swap-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 15px;
}

.tab-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: #fff;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
    background: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.amount-input {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.amount-input:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fff;
}

.amount-input input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    outline: none;
}

.amount-input .currency {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    color: #667eea;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.quick-amounts {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.quick-amounts button {
    padding: 0.4rem 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    background: #fff;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-amounts button:hover {
    border-color: #667eea;
    background: #667eea;
    color: #fff;
    transform: translateY(-2px);
}

.swap-arrow {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}

.swap-arrow i {
    font-size: 1.5rem;
    color: #667eea;
    background: #fff;
    padding: 0.8rem;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.swap-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    color: #555;
}

.info-row:last-child {
    margin-bottom: 0;
}

.swap-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.sell-btn {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
}

.sell-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.swap-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.swap-btn:hover::before {
    left: 100%;
}

.swap-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.powered-by {
    font-family: 'Comic Neue', cursive;
    color: #666;
    font-size: 0.9rem;
}

.powered-by a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: #764ba2;
}

/* Responsive Design for Swap Widget */
@media (max-width: 768px) {
    .swap-widget {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .token-details h3 {
        font-size: 1.5rem;
    }
    
    .token-price {
        font-size: 1rem;
    }
    
    .swap-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .quick-amounts {
        justify-content: center;
    }
    
    .tab-btn {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle fill="url(%23a)" cx="10" cy="10" r="10"/><circle fill="url(%23a)" cx="30" cy="10" r="10"/><circle fill="url(%23a)" cx="50" cy="10" r="10"/><circle fill="url(%23a)" cx="70" cy="10" r="10"/><circle fill="url(%23a)" cx="90" cy="10" r="10"/></svg>') repeat;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px) scale(1.02);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.3);
}

.social-link.dexscreener:hover {
    border-color: #00d4aa;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.social-link.pumpfun:hover {
    border-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
}

.footer-logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 1rem;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateY(0);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cartoon-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}