/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #2c2c2c;
    padding: 10px 0;
    color: #ffffff;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.top-bar-text {
    color: #ffffff;
    margin-right: 20px;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
}

.top-bar-separator {
    color: #ffffff;
    margin: 0 5px;
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #5a9fd4, #8a2be2);
    border-radius: 4px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #8a2be2;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8a2be2;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

.header-separator {
    color: #666666;
}

.mint-btn {
    padding: 10px 20px;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mint-btn:hover {
    background-color: #6a1bb2;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #8a2be2;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 10px;
}

.hero-search {
    display: flex;
    gap: 10px;
    margin: 30px 0 15px;
    max-width: 600px;
}

.hero-search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.hero-search-input:focus {
    outline: none;
    border-color: #8a2be2;
}

.hero-search-btn {
    padding: 15px 30px;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-search-btn:hover {
    background-color: #6a1bb2;
}

.hero-note {
    font-size: 14px;
    color: #999999;
}

.hero-right {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.phone-mockup:nth-child(2) {
    transform: rotate(0deg);
    margin-top: 20px;
}

.phone-mockup:nth-child(3) {
    transform: rotate(5deg);
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a2be2, #5a9fd4);
    border-radius: 50%;
    margin-bottom: 15px;
    background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
}

.phone-text {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;
}

.phone-text-small {
    font-size: 14px;
    color: #666666;
}

.phone-keyboard {
    background-color: #f5f5f5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.phone-list {
    align-items: flex-start;
}

.list-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.list-item {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    width: 100%;
}

/* Get DNA Section */
.get-dna-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.dna-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.dna-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 16px;
    color: #666666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dna-tab.active {
    color: #8a2be2;
    font-weight: bold;
}

.tab-separator {
    color: #cccccc;
}

.dna-content {
    display: none;
}

.dna-content.active {
    display: block;
}

.dna-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dna-subtitle {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}

.dna-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.choose-btn {
    padding: 15px 40px;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.choose-btn:hover {
    background-color: #6a1bb2;
}

.laptop-mockup {
    width: 100%;
    max-width: 500px;
    background-color: #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.laptop-screen {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
    min-height: 300px;
}

.screen-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 10px;
}

.domain-name {
    font-size: 16px;
    color: #333333;
}

.manage-btn {
    padding: 8px 15px;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.phone-game,
.phone-profile {
    width: 180px;
    height: 360px;
}

.game-character {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.game-name {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}

.game-start {
    padding: 12px 30px;
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a2be2, #5a9fd4);
    border-radius: 50%;
    margin: 0 auto 15px;
    background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.edit-btn {
    padding: 10px 20px;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.phone-chat,
.phone-wallet {
    width: 180px;
    height: 360px;
}

.chat-message {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333333;
}

.chat-send {
    background-color: #8a2be2;
    color: #ffffff;
    margin-left: auto;
}

.wallet-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.wallet-balance {
    font-size: 24px;
    font-weight: bold;
    color: #4caf50;
}

.dna-visual {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Be the One Section */
.be-one-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-subtitle {
    font-size: 24px;
    color: #666666;
    margin-bottom: 20px;
}

.section-text {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Browsers Section */
.browsers-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.browsers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.browser-card {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.browser-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.browser-w3dna {
    background: linear-gradient(135deg, #5a9fd4, #8a2be2);
}

.browser-brave {
    background-color: #ff6600;
}

.browser-opera {
    background-color: #ff1b2d;
}

.browser-chrome {
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc04, #34a853);
}

.browser-edge {
    background: linear-gradient(135deg, #0078d4, #00a4ef);
}

.browser-firefox {
    background: linear-gradient(135deg, #ff7139, #ff9500);
}

.browser-name {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.browser-btn {
    padding: 10px 20px;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.browser-btn:hover {
    background-color: #6a1bb2;
}

/* Features Bar */
.features-bar {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #8a2be2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-text {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #f9f9f9;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-section .hero-search {
    max-width: 600px;
    margin: 30px auto 0;
}

/* Footer */
.site-footer {
    background-color: #2c2c2c;
    padding: 40px 0;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-text {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8a2be2;
}

.footer-separator {
    color: #ffffff;
    margin: 0 10px;
}

.social-icon {
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #8a2be2;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        justify-content: center;
    }
    
    .dna-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .dna-visual {
        flex-direction: column;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
    
    .browsers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
