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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    line-height: 1.4;
}

/* Navigation Bar */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 32px;
    height: 32px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.verawallet-btn {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.verawallet-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.external-icon {
    color: #000000;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.language-selector:hover {
    background: #f9fafb;
}

.globe-icon,
.dropdown-arrow {
    color: #000000;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .verawallet-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

/* Presale Section */
.presale-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e5e5;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626;
    text-shadow: 2px 2px 0px #b91c1c;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric {
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #dc2626;
    text-shadow: 1px 1px 0px #b91c1c;
}

.progress-container {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #d1d5db;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    width: 89%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.progress-text {
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    text-shadow: 1px 1px 0px #ffffff;
}

/* Countdown Section */
.countdown-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e5e5;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc2626;
    text-shadow: 2px 2px 0px #b91c1c;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-timer {
    display: flex;
    align-items: center;
    background: #f9fafb;
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid #e5e5e5;
    gap: 15px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    text-shadow: 2px 2px 0px #ffffff;
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    text-shadow: 1px 1px 0px #b91c1c;
}

/* Deposit Section */
.deposit-section {
    text-align: center;
}

.deposit-form {
    max-width: 500px;
    margin: 0 auto;
}

.deposit-input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 15px;
}

.deposit-label {
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    white-space: nowrap;
}

.input-container {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 10px 15px;
    min-width: 200px;
}

.deposit-input {
    background: transparent;
    border: none;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    width: 100%;
    outline: none;
    text-align: right;
}

.deposit-input::-webkit-outer-spin-button,
.deposit-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.currency-label {
    color: #000000;
    font-weight: 600;
    margin-left: 10px;
    font-size: 1.1rem;
}

.terms-container {
    margin-bottom: 25px;
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #000000;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #dc2626;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.terms-link {
    color: #dc2626;
    text-decoration: none;
    text-shadow: 1px 1px 0px #ffffff;
}

.terms-link:hover {
    color: #b91c1c;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.action-button {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

.connect-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.connect-button:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.deposit-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.deposit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.deposit-button:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.info-list {
    text-align: left;
    margin-bottom: 20px;
}

.info-item {
    color: #000000;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.help-section {
    margin-top: 20px;
}

.help-text {
    color: #000000;
    font-size: 0.9rem;
}

.help-link {
    color: #dc2626;
    text-decoration: none;
    text-shadow: 1px 1px 0px #ffffff;
}

.help-link:hover {
    color: #b91c1c;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://verasity.io/static/images/pages/home-page/home-page-main-block-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #a855f7;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-title-accent::after {
    content: '|';
    color: #ffffff;
    margin-left: 8px;
}

.hero-description {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-button {
    background: linear-gradient(135deg, #1e40af 0%, #5b21b6 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wireframe-v {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.v-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    background: transparent;
}

.v-outline::before {
    content: 'V';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.concentric-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 {
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 280px;
    height: 280px;
    animation: rotate 25s linear infinite reverse;
}

.circle-3 {
    width: 360px;
    height: 360px;
    animation: rotate 30s linear infinite;
}

.geometric-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.line {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    height: 1px;
    transform-origin: left center;
}

.line-1 {
    width: 100px;
    top: 0;
    left: 0;
    transform: rotate(45deg);
    animation: pulse 3s ease-in-out infinite;
}

.line-2 {
    width: 80px;
    top: 50px;
    left: 20px;
    transform: rotate(-30deg);
    animation: pulse 3s ease-in-out infinite 0.5s;
}

.line-3 {
    width: 120px;
    top: -30px;
    left: -20px;
    transform: rotate(60deg);
    animation: pulse 3s ease-in-out infinite 1s;
}

.line-4 {
    width: 90px;
    top: 80px;
    left: -40px;
    transform: rotate(-60deg);
    animation: pulse 3s ease-in-out infinite 1.5s;
}

.data-cubes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cube {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    animation: float 4s ease-in-out infinite;
}

.cube-1 {
    top: -60px;
    left: -20px;
    animation-delay: 0s;
}

.cube-2 {
    top: -40px;
    left: 40px;
    animation-delay: 0.8s;
}

.cube-3 {
    top: 20px;
    left: 60px;
    animation-delay: 1.6s;
}

.cube-4 {
    top: 60px;
    left: -30px;
    animation-delay: 2.4s;
}

.cube-5 {
    top: 40px;
    left: 20px;
    animation-delay: 3.2s;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

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

/* Wallet Connect Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #000000;
}

.modal-content {
    padding: 0 24px 24px 24px;
}

.modal-description {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.5;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.wallet-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.wallet-option:hover {
    border-color: #dc2626;
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.wallet-icon {
    margin-right: 16px;
    flex-shrink: 0;
}

.wallet-info {
    flex: 1;
}

.wallet-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.wallet-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.wallet-arrow {
    font-size: 1.2rem;
    color: #dc2626;
    font-weight: 600;
    margin-left: 12px;
    transition: transform 0.2s ease;
}

.wallet-option:hover .wallet-arrow {
    transform: translateX(4px);
}

.modal-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}

.modal-help {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.modal-help-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.modal-help-link:hover {
    color: #b91c1c;
}

/* Modal Responsive */
@media (max-width: 480px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 20px 0 20px;
    }
    
    .modal-content {
        padding: 0 20px 20px 20px;
    }
    
    .wallet-option {
        padding: 12px;
    }
    
    .wallet-icon {
        margin-right: 12px;
    }
    
    .wallet-info h3 {
        font-size: 1rem;
    }
    
    .wallet-info p {
        font-size: 0.85rem;
    }
}

/* Footer Styles */
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0 40px 0;
    gap: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-logo {
    width: 32px;
    height: 32px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.footer-columns {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.footer-link:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #000000;
}

.footer-copyright {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.footer-contact {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.footer-contact-link {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #b91c1c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .deposit-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .input-container {
        min-width: auto;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .time-unit {
        min-width: 50px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    /* Hero Responsive */
    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-accent {
        font-size: 3rem;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 1.1rem;
    }
    
    .wireframe-v {
        width: 300px;
        height: 300px;
    }
    
    /* Footer Responsive */
    .footer-top {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0 30px 0;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-columns {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
}
