/*start play unified style*/
.start-play-unified {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Timeline vertical line */
.timeline-line {
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: 100px;
    width: 3px;
    background: linear-gradient(180deg, #2c6eb5 0%, rgba(44, 110, 181, 0.3) 100%);
    z-index: 0;
}

/* Individual step */
.play-step {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    z-index: 1;
}

/* Step marker circle */
.step-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c6eb5 0%, #1e4d7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #141623, 0 8px 20px rgba(44, 110, 181, 0.4);
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Bonus step marker */
.step-marker.bonus {
    background: linear-gradient(135deg, #2bb530 0%, #1e8523 100%);
    box-shadow: 0 0 0 4px #141623, 0 8px 20px rgba(43, 181, 48, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 4px #141623, 0 8px 20px rgba(43, 181, 48, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px #141623, 0 8px 30px rgba(43, 181, 48, 0.7);
    }
}

/* Step body content */
.step-body {
    flex: 1;
    background: #141623;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(110, 180, 255, 0.1);
    transition: all 0.3s ease;
}

.play-step:hover .step-body {
    border-color: rgba(110, 180, 255, 0.3);
}

.bonus-step .step-body {
    border-color: rgba(43, 181, 48, 0.2);
    background: linear-gradient(135deg, #141623 0%, rgba(43, 181, 48, 0.05) 100%);
}

.bonus-step:hover .step-body {
    border-color: rgba(43, 181, 48, 0.4);
}

/* Realm badges */
.realm-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.realm-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.realm-badge.available {
    background: rgba(43, 181, 48, 0.15);
    border: 1px solid #2bb530;
    color: #2bb530;
}

.realm-badge.unavailable {
    background: rgba(181, 43, 43, 0.15);
    border: 1px solid #b14249;
    color: #b14249;
}

/* Step heading */
.step-heading {
    font-size: 26px;
    font-weight: 800;
    color: #d6e9fe;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bonus-heading {
    color: #2bb530;
}

/* Step text */
.step-text {
    font-size: 16px;
    line-height: 1.7;
    color: #b7c9dd;
}

.step-text p {
    margin-bottom: 12px;
}

.step-text p:last-child {
    margin-bottom: 0;
}

.step-text a {
    color: #6eb4ff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed #6eb4ff;
    transition: all 0.3s ease;
}

.step-text a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.step-text strong {
    color: #d6e9fe;
    font-weight: 700;
}

.step-text code {
    background: rgba(110, 180, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #6eb4ff;
    font-size: 15px;
}

/* Realmlist box */
.realmlist-box {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #2c6eb5;
    border-radius: 10px;
    padding: 0px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.realmlist-box code {
    font-size: 20px;
    font-weight: 800;
    color: #6eb4ff;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    flex: 1;
    background: none;
    padding: 0;
}

.btn-copy {
    background: rgba(44, 110, 181, 0.3);
    border: 1px solid #2c6eb5;
    border-radius: 6px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6eb4ff;
    padding: 0;
    flex-shrink: 0;
}

.btn-copy:hover {
    background: #2c6eb5;
    color: #fff;
    transform: scale(1.1);
}

/* Hint text */
.hint-text {
    font-size: 14px;
    color: #8899aa;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Divider */
.divider {
    height: 1px;
    background: rgba(110, 180, 255, 0.1);
    margin: 25px 0;
}

/* Download grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 18px 0 25px 0;
}

.download-option {
    background: rgba(44, 110, 181, 0.1);
    border: 2px solid #2c6eb5;
    border-radius: 10px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #6eb4ff;
}

.download-option:hover {
    background: #2c6eb5;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 110, 181, 0.4);
}

.download-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-option span {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

/* Info box */
.info-box {
    background: rgba(110, 180, 255, 0.05);
    border: 1px solid rgba(110, 180, 255, 0.2);
    border-radius: 8px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #b7c9dd;
}

.info-box svg {
    flex-shrink: 0;
    color: #6eb4ff;
}

/* Warning box */
.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #b7c9dd;
    margin-top: 20px;
    line-height: 20px;
}

.warning-box svg {
    flex-shrink: 0;
    color: #ffc107;
    margin-top: 2px;
}

.warning-box strong {
    color: #ffc107;
}

.warning-box a {
    color: #6eb4ff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed #6eb4ff;
}

.warning-box a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #b7c9dd;
}

.feature-item svg {
    flex-shrink: 0;
    color: #2bb530;
}

/* Action buttons */
.step-action {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2c6eb5 0%, #1e4d7a 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(44, 110, 181, 0.3);
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 110, 181, 0.5);
    background: linear-gradient(135deg, #3d7fc5 0%, #2c6eb5 100%);
}

.btn-action.bonus-btn {
    background: linear-gradient(135deg, #2bb530 0%, #1e8523 100%);
    box-shadow: 0 5px 20px rgba(43, 181, 48, 0.3);
}

.btn-action.bonus-btn:hover {
    background: linear-gradient(135deg, #32cd32 0%, #2bb530 100%);
    box-shadow: 0 8px 30px rgba(43, 181, 48, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .start-play-unified {
        padding: 20px 10px;
    }

    .timeline-line {
        left: 34px;
        top: 70px;
        bottom: 60px;
    }

    .play-step {
        gap: 15px;
        margin-bottom: 40px;
    }

    .step-marker {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .step-number {
        font-size: 24px;
    }

    .step-body {
        padding: 22px 18px;
        min-width: 0;
        overflow: hidden;
    }

    .step-heading {
        font-size: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .step-text {
        font-size: 17px;
        line-height: 24px;
    }

    .step-text p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .realmlist-box {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        gap: 10px;
    }

    .realmlist-box code {
        text-align: center;
        font-size: 15px;
        word-break: break-all;
    }

    .btn-copy {
        width: 100%;
        height: 44px;
    }

    .btn-action {
        padding: 12px 20px;
        font-size: 20px;
        width: 100%;
    }

    .realm-badges {
        flex-direction: column;
    }

    .realm-badge {
        text-align: center;
        width: 100%;
    }

    .warning-box {
        padding: 12px 15px;
        font-size: 14px;
    }

    .info-box {
        padding: 12px 15px;
        font-size: 14px;
    }

    /* Fix overflow issues */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    main.inner h3 {
        font-size: 27px;
    }
}