:root {
    --primary-color: #1565C0;
    --secondary-color: #0D47A1;
    --accent-color: #2196F3;
    --light-color: #BBDEFB;
    --dark-color: #0A1929;
    --darker-color: #071422;
    --text-color: #E0E0E0;
    --background-color: #0A1929;
    --card-bg-color: #102A43;
    --highlight-color: #29B6F6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

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

header {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo {
    max-width: 500px;
    margin: 0 auto;
    padding: 10px 0;
}

#domain-logo {
    width: 100%;
    height: auto;
}

.domain-text {
    font-size: 36px;
    font-weight: 200;
    fill: var(--accent-color);
    font-family: 'Raleway', sans-serif;
    letter-spacing: 3px;
}

.domain-com {
    font-size: 24px;
    fill: var(--light-color);
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    letter-spacing: 1px;
}

.visitor-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background: rgba(13, 71, 161, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.counter-label {
    margin-right: 8px;
    color: var(--light-color);
    font-size: 14px;
}

.counter-number {
    font-weight: bold;
    color: var(--highlight-color);
    font-size: 16px;
}

.hero {
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero h1, .hero h2 {
    font-family: 'Orbitron', sans-serif;
}

.hero h1 {
    font-size: 42px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--accent-color), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero h2 {
    font-size: 36px;
    letter-spacing: 1px;
    color: var(--light-color);
    margin-bottom: 30px;
}

.digital-grid {
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.brain-icon {
    width: 100%;
    height: 100%;
}

.brain-path {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 1;
    stroke-opacity: 0.6;
}

.brain-connector {
    fill: none;
    stroke: var(--highlight-color);
    stroke-width: 0.5;
    stroke-opacity: 0.4;
    stroke-dasharray: 2, 2;
}

.brain-nodes {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 0.3;
    stroke-opacity: 0.3;
}

.brain-node {
    fill: var(--highlight-color);
    stroke: var(--accent-color);
    stroke-width: 0.5;
}

.domain-value {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 20px;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card-bg-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid var(--accent-color);
}

.value-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--highlight-color);
}

.icon {
    width: 40px;
    height: 40px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.value-point h3 {
    color: var(--highlight-color);
    margin-bottom: 15px;
    font-size: 24px;
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.value-point p {
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 12px;
}

.value-point p:last-child {
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--darker-color));
    border-radius: 12px;
    margin: 0 auto 60px;
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 15px 30px rgba(7, 20, 34, 0.4);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: 32px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--light-color);
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--darker-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background-color: white;
}

footer {
    text-align: center;
    padding: 20px 0;
    color: var(--light-color);
    font-size: 14px;
    margin-top: 20px;
    border-top: 1px solid rgba(33, 150, 243, 0.2);
}

.copyright {
    margin-top: 8px;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 12px;
}

@media (min-width: 768px) {
    .domain-value {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .value-point {
        flex: 1;
        min-width: 400px;
        max-width: 450px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 26px;
    }
    
    .digital-grid {
        height: 200px;
        max-width: 200px;
    }
    
    .value-point {
        flex-direction: column;
        padding: 20px;
    }
    
    .value-point h3 {
        font-size: 20px;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
        width: 100%;
    }
    
    .domain-text {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .domain-com {
        font-size: 20px;
    }
}