body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
    grid-auto-rows: auto;
}

.app-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    min-height: 200px;
}

.app-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}

.app-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
}

.app-card:nth-child(odd) h3::after {
    background-color: #2c3e50;
}

.app-card:nth-child(even) h3::after {
    background-color: #4CAF50;
}

.app-card p {
    margin: 0 0 15px;
    text-align: justify;
}

.app-card p:last-child {
    margin-bottom: 0;
}

.app-card:nth-child(odd) {
    background-color: #f0f7f0;
}

.app-card:nth-child(even) {
    background-color: #f5f5f5;
}

h1 {
    color: #2c3e50;
    text-align: center;
    font-size: min(8em, 15vw);
    margin: 40px 0;
    letter-spacing: 2px;
    font-weight: 300;
    position: relative;
    display: inline-block;
    padding: 0 20px 0 35px;
    line-height: 1;
}

h1::before, h1::after {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 0px);
    top: 0;
    left: 15px;
    pointer-events: none;
}

h1::before {
    border-top: 9px solid #4CAF50;
    border-right: 9px solid #4CAF50;
    border-bottom: 9px solid transparent;
    border-left: 9px solid transparent;
}

h1::after {
    border-bottom: 9px solid #2c3e50;
    border-left: 9px solid #2c3e50;
    border-top: 9px solid transparent;
    border-right: 9px solid transparent;
}

h1 .gobi {
    color: #4CAF50;
    font-weight: 300;
}

h1 .app-name {
    color: #2c3e50;
    font-weight: 300;
}

.intro {
    text-align: center;
    margin-bottom: 30px;
}

.gobi {
    color: #4CAF50;
}

.app-name {
    color: #2c3e50;
}

.lang-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.lang-switch a {
    text-decoration: none;
    color: #4CAF50;
    margin-left: 10px;
}

.lang-switch a.active {
    font-weight: bold;
    color: #2c3e50;
}

.initial-letter {
    font-weight: 600;
}

.title-container {
    text-align: center;
    margin: 30px 0;
}

.hunt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.hunt-button:hover {
    background-color: #45a049;
}

.hunt-button i {
    font-size: 1.2em;
}

.button-container {
    text-align: center;
    margin-top: auto;
}

.page-container {
    border: 2px solid #4CAF50;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    position: relative;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    margin-top: 30px !important;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    h1 {
        font-size: min(6em, 12vw);
        margin: 30px 0;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
    body {
        padding: 15px;
    }
    h1 {
        font-size: min(4em, 10vw);
        margin: 20px 0;
        letter-spacing: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: min(3em, 8vw);
        margin: 15px 0;
    }
} 