/* Custom Fonts */
@font-face {
    font-family: 'Uni Sans';
    src: url('Uni Sans Heavy Italic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Uni Sans';
    src: url('Uni Sans Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Uni Sans';
    src: url('Uni Sans Thin Italic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Uni Sans';
    src: url('Uni Sans Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    pointer-events: auto;
}

body, html {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-drag: none;
}

img, svg, a, button, input, textarea, select, label, span, div {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none !important;
    user-select: none !important;
}

:root {
    --primary-green: #0E835D;
    --dark-green: #023925;
    --dark-bg: #151616;
    --accent-green: #1a9f6e;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #0E835D 0%, #023925 100%);
    --gradient-secondary: linear-gradient(135deg, #023925 0%, #0E835D 100%);
    --shadow-primary: 0 10px 30px rgba(14, 131, 93, 0.3);
    --shadow-secondary: 0 5px 15px rgba(2, 57, 37, 0.2);
}

body {
    font-family: 'Uni Sans', 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--dark-bg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(21, 22, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(14, 131, 93, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(21, 22, 22, 0.8);
    border: 1px solid rgba(14, 131, 93, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.language-btn:hover {
    background: rgba(14, 131, 93, 0.1);
    border-color: var(--primary-green);
}

.language-icon {
    width: 18px;
    height: 18px;
}



.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(21, 22, 22, 0.95);
    border: 1px solid rgba(14, 131, 93, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.language-option:hover {
    background: rgba(14, 131, 93, 0.1);
}

.flag-icon {
    width: 20px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(14, 131, 93, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(14, 131, 93, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(14, 131, 93, 0.8), 0 0 40px rgba(14, 131, 93, 0.3);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.social-icon {
    width: 32px;
    height: 32px;
}

.twitter-icon {
    width: 48px;
    height: 48px;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 131, 93, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--text-light);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatElement 8s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.float-element:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(14, 131, 93, 0.05) 0%, rgba(2, 57, 37, 0.05) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.about-card {
    background: rgba(21, 22, 22, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(14, 131, 93, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 131, 93, 0.1), transparent);
    transition: left 0.5s;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-green);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.security-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-light);
}

.community-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.feature-item {
    background: rgba(21, 22, 22, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(14, 131, 93, 0.2);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--primary-green);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.3;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Social Section */
.social {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(14, 131, 93, 0.05) 0%, rgba(2, 57, 37, 0.05) 100%);
}

.social-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.twitter-embed h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.twitter-container {
    background: rgba(21, 22, 22, 0.8);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(14, 131, 93, 0.2);
    overflow: hidden;
    max-width: 100%;
}

.twitter-container iframe {
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    height: 400px;
}

.twitter-fallback {
    display: none;
    text-align: center;
    padding: 2rem;
}

.twitter-placeholder {
    background: rgba(21, 22, 22, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(14, 131, 93, 0.2);
}

.twitter-placeholder i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.twitter-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.twitter-placeholder p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Fallback для случаев, когда iframe не загружается */
.twitter-container:has(iframe[style*="display: none"]) .twitter-fallback,
.twitter-container:not(:has(iframe)) .twitter-fallback {
    display: block;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(21, 22, 22, 0.8);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    border: 1px solid rgba(14, 131, 93, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

.social-link:hover {
    background: var(--primary-green);
    box-shadow: var(--shadow-secondary);
}

.social-link i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #151616;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(14, 131, 93, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 131, 93, 0.2);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .social-content {
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        min-width: 200px;
        padding: 1rem;
    }
    
    .twitter-container iframe {
        height: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scroll Animations - отключены для предотвращения багов */
/* .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
} */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-green);
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 120px 0 4rem;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.privacy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    background: rgba(21, 22, 22, 0.8);
    border: 1px solid rgba(14, 131, 93, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-secondary);
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.5rem 0 1rem;
    color: var(--primary-green);
}

.privacy-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: var(--text-gray);
    line-height: 1.6;
    margin-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: rgba(14, 131, 93, 0.1);
    border: 1px solid rgba(14, 131, 93, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* FAQ Section Styles */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(14, 131, 93, 0.05) 0%, rgba(2, 57, 37, 0.05) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(21, 22, 22, 0.8);
    border: 1px solid rgba(14, 131, 93, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-secondary);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(14, 131, 93, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-more {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Page Specific Styles */
.faq-content .faq-item {
    margin-bottom: 1rem;
}

.faq-content .faq-question h3 {
    font-size: 1.4rem;
}

.faq-content .faq-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
    .privacy-content {
        padding: 100px 0 2rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
}

/* Wallet Modal Styles */
.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wallet-modal.active {
    display: flex;
    opacity: 1;
}

.wallet-modal-content {
    background: var(--dark-bg);
    border: 1px solid rgba(14, 131, 93, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.wallet-modal.active .wallet-modal-content {
    transform: scale(1);
}

.wallet-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(14, 131, 93, 0.2);
}

.wallet-modal-header h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.wallet-modal-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-modal-close:hover {
    background: rgba(14, 131, 93, 0.1);
    color: var(--primary-green);
}

.wallet-modal-close svg {
    width: 24px;
    height: 24px;
}

.wallet-modal-description {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.wallet-item {
    background: rgba(14, 131, 93, 0.05);
    border: 1px solid rgba(14, 131, 93, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wallet-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 131, 93, 0.1), transparent);
    transition: left 0.5s ease;
}

.wallet-item:hover::before {
    left: 100%;
}

.wallet-item:hover {
    background: rgba(14, 131, 93, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 131, 93, 0.2);
}

.wallet-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid rgba(14, 131, 93, 0.3);
    transition: all 0.3s ease;
}

.wallet-item:hover .wallet-icon {
    border-color: var(--primary-green);
    background: rgba(14, 131, 93, 0.1);
    transform: scale(1.05);
}

.wallet-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.wallet-name {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.wallet-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Wallet Modal */
@media (max-width: 768px) {
    .wallet-modal-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 85vh;
    }
    
    .wallet-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .wallet-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .wallet-item {
        padding: 1rem;
    }
    
    .wallet-icon {
        width: 60px;
        height: 60px;
        padding: 0.8rem;
    }
    
    .wallet-name {
        font-size: 1rem;
    }
    
    .wallet-description {
        font-size: 0.8rem;
    }
} 