.contact-block {
    background: #3498db;
    border-radius: 12px;
    padding: 1.4rem 1.3rem;
    min-width: 0;
    width: 100%;
    min-height: 60px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(148, 226, 213, 0.1);
    margin-bottom: 0;
    gap: 1rem;
    font-size: 1.05rem;
    color: #ecf0f1;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    word-break: break-word;
}

.contact-block:hover {
    background: #2980b9;
    transform: translateY(-3px);
    border-color: rgba(148, 226, 213, 0.3);
}
a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: #ecf0f1;
    text-decoration: underline;
}

body {
    font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #1E1E2E;
    color: #ecf0f1;
    min-height: 100vh;
    letter-spacing: 0.01em;
    font-size: 1.08rem;
    transition: background 0.3s;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #94e2d5;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.logo-image {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo-image:hover {
    transform: rotate(10deg) scale(1.05);
}
nav a {
    color: #94e2d5;
    text-decoration: none;
    margin-left: 1.4rem;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.4em 1.2em;
    font-size: 1.05rem;
    background: transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
nav a:first-child {
    margin-left: 0;
}
main {
    max-width: 820px;
    margin: 2.5rem auto 3.5rem auto;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    background: #302D41;
    border-radius: 12px;
    animation: fadein 1.2s;
    margin-bottom: 8rem;
    border: 1px solid rgba(148, 226, 213, 0.1); /* Prevent overlap with sticky footer and contact-blocks */
}
section {
    margin-bottom: 2.8rem;
    padding-bottom: 0.5rem;
}
h1 {
    color: #3498db;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

h2 {
    color: #3498db;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    font-weight: 700;
}
.coming-soon {
    font-size: 1.08rem;
    color: #3498db;
    font-weight: 500;
    margin-top: 1.2em;
    display: flex;
    align-items: center;
}
.modern-section {
    background: #34495e;
    border-radius: 12px;
    padding: 2rem 2.2rem 2.2rem 2.2rem;
    margin-bottom: 2.2rem;
}
.contact-card {
    background: #34495e;
    border-radius: 12px;
    padding: 1.2rem 1.1rem;
    margin-top: 2.2rem;
    margin-bottom: 2.5rem;
    animation: fadein 1.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120px;
    gap: 1rem;
}
.contact-title {
    font-size: 2.3rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #3498db;
    margin-bottom: 1.5rem;
    text-align: left;
    letter-spacing: 1px;
    font-weight: 700;
}
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
    margin-bottom: 0.5rem;
    min-height: 220px;
}

.contact-link:hover {
    color: #ecf0f1;
    background: #2980b9;
}
.modern-icons {
    display: flex;
    gap: 1.1rem;
    padding: 0;
    margin: 0.7rem 0 0 0;
    list-style: none;
}
.modern-icons li {
    display: flex;
    align-items: center;
}
.modern-icons a {
    display: flex;
    align-items: center;
    border-radius: 50%;
    padding: 6px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
}
.modern-icons a:hover {
    background: #3498db;
    transform: scale(1.10);
}
.modern-icons i {
    font-size: 1.3em;
}
.game {
    background: #34495e;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.7rem;
    transition: transform 0.18s ease;
}

.game:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.game-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.game-info {
    flex: 1;
}

.game-image {
    flex-shrink: 0;
}

.game-image img {
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.game:hover .game-image img {
    transform: rotate(5deg) scale(1.05);
}
.game h3 {
    color: #3498db;
    font-size: 1.35rem;
    margin-top: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
}
.steam-btn {
    display: inline-flex;
    align-items: center;
    background: #3498db;
    color: #fff;
    font-weight: 500;
    font-size: 1.08rem;
    border-radius: 8px;
    padding: 0.5em 1.2em;
    margin-top: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.steam-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}
footer {
    text-align: center;
    padding: 0.5rem 0;
    background: #34495e;
    color: #3498db;
    width: 100%;
    font-size: 1.05rem;
}
header {
    width: 100%;
    background: #302D41;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    box-sizing: border-box;
}

header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #94e2d5;
}

.header-wrapper {
    width: 100%;
    background: #302D41;
    position: relative;
    border-bottom: 3px solid #94e2d5;
}
@media (max-width: 900px) {
    main {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .contact-card {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .contact-methods {
        flex-direction: column;
        gap: 1.2rem;
    }
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
