:root {
    --primary: #0055A4;
    --secondary: #0077CC;
    --accent: #00A0FF;
    --light: #E0F4FF;
    --dark: #002B55;
    --text: #333333;
    --bg: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

header {
    background: var(--gradient);
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-switcher button {
    background: none;
    border: 1px solid #ccc; /* Пример границы */
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    color: #9e9e9e; /* Цвет текста кнопки */
    border-radius: 4px;
}

.language-switcher button.active {
    background-color: #0055A4; /* Цвет фона активной кнопки */
    color: white; /* Цвет текста активной кнопки */
    border-color: #0055A4;
    font-weight: bold;
    margin-bottom: 4px;
}

.language-switcher button:hover:not(.active) {
    background-color: #f0f0f0; /* Легкий фон при наведении */
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family:"Koh Santepheap", serif;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.8;
}

.hero {
    background: url('../img/wmtpc-network.webp') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 43, 85, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 160, 255, 0.3);
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.token-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.token-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.token-icon {
    height: 200px;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 64px;
}

.token-content {
    padding: 30px;
}

.token-title {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.token-description {
    margin-bottom: 20px;
}

.token-features {
    list-style: none;
    margin-bottom: 20px;
}

.token-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.token-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.whitepaper-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.whitepaper-link:hover {
    color: var(--accent);
}

.whitepaper-link::after {
    content: ' →';
}

.contact {
    background-color: var(--light);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-title svg {
    margin-right: 10px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 15px;
    color: var(--secondary);
}

.contact-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

footer {
    background: var(--dark);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 4px;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.copyright {
    opacity: 0.7;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeIn 1s ease-out;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .contact-content {
        flex-direction: column;
    }
}
