.open-modal-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.open-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Modal Styles */
/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: #1e293b;
    border: 1px solid #475569;
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal.active .modal__content {
    transform: scale(1) translateY(0);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal__close:hover {
    background: #334155;
    color: #ffffff;
}

.modal__header {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.logo:hover {
    color: #f97316;
}

.logo .stats {
    color: #3b82f6;
    transition: all 0.3s ease;
}

.logo:hover .stats {
    color: #60a5fa;
}

.modal__body {
    text-align: center;
}

.modal__title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.modal__subtitle {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.steam-btn {
    width: 100%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    margin-bottom: 24px;
}

.steam-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
}

.steam-btn:active {
    transform: translateY(0);
}

.steam-icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
}

.steam-icon svg {
    width: 16px;
    height: 16px;
}

.steam-indicator {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.steam-btn:hover .steam-indicator {
    background: rgba(255, 255, 255, 0.5);
}

.modal__info {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.4;
}

.modal__info p {
    margin-bottom: 4px;
}

/* Decorative corners */
.corner {
    position: absolute;
    width: 32px;
    height: 32px;
}

.corner--top-left {
    top: -1px;
    left: -1px;
    border-left: 2px solid #f97316;
    border-top: 2px solid #f97316;
    border-top-left-radius: 16px;
}

.corner--bottom-right {
    bottom: -1px;
    right: -1px;
    border-right: 2px solid #3b82f6;
    border-bottom: 2px solid #3b82f6;
    border-bottom-right-radius: 16px;
}

/* Responsive */
@media (max-width: 480px) {
    .modal__content {
        padding: 24px;
        margin: 16px;
    }

    .logo {
        font-size: 28px;
    }

    .modal__title {
        font-size: 18px;
    }

    .steam-btn {
        font-size: 16px;
        padding: 14px 20px;
    }
}

/* Animation for ripple effect */
.logo {
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.logo:hover::before {
    width: 200px;
    height: 200px;
}