main {
    height: 100vh;
    background-image: url(../../src/background-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paused-container {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    width: 360px;
    max-width: 90vw;
}

.paused-header {
    text-align: center;
}

.paused-icon {
    width: 48px;
    height: 48px;
    color: #f0ad4e;
    margin-bottom: 12px;
}

.paused-header h2 {
    margin: 0 0 20px;
    font-size: 1.2rem;
    color: #333;
}

.paused-body {
    text-align: center;
}

.paused-message {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 8px;
}

.paused-message-sub {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin: 0 0 20px;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.platform-list a img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.platform-list a img:hover {
    transform: scale(1.1);
}

.paused-footer {
    text-align: center;
}

.back-btn {
    display: inline-block;
    padding: 8px 32px;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.back-btn:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    main {
        height: 100dvh;
        background-position: 65% center;
    }

    .paused-container {
        width: auto;
        max-width: 70%;
    }

    .platform-list {
        max-width: 180px;
        margin-left: auto;
        margin-right: auto;
    }
}