.shop-section {
    padding: 40px 0;
    margin-top: 40px;
}

.shop-section .minecraft-title {
    margin-bottom: 10px;
    text-align: center;
}

.shop-section .minecraft-subtitle {
    margin-bottom: 40px;
    font-size: 1.4rem;
    text-align: center;
}

.uuid-input-section {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.uuid-input-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.uuid-label {
    font-size: 1.3rem;
    color: #CCC;
}

.uuid-input {
    max-width: 500px;
    text-align: center;
}

.check-btn {
    position: static;
    width: auto;
    padding: 12px 30px;
}

.status-display {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 0;
    font-size: 1.2rem;
    display: none;
}

.status-display.active {
    display: block;
}

.status-display.status-success {
    background: #1a2b1a;
    border: 3px solid #4ade80;
    color: #4ade80;
}

.status-display.status-info {
    background: #1a1a2b;
    border: 3px solid #60a5fa;
    color: #60a5fa;
}

.status-display.status-error {
    background: #2b1a1a;
    border: 3px solid #ff5252;
    color: #ff5252;
}

.status-display.status-warning {
    background: #2b2a1a;
    border: 3px solid #fbbf24;
    color: #fbbf24;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.shop-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 3px solid #000;
    padding: 25px;
    text-align: center;
    position: relative;
    box-shadow: inset 3px 3px 0px rgba(255,255,255,0.1), inset -3px -3px 0px rgba(0,0,0,0.2);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4ade80;
    color: #000;
    padding: 5px 15px;
    font-family: 'VT323', monospace;
    font-size: 1rem;
    border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
}

.card-badge.best-badge {
    background: #fbbf24;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: #FFF;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #000;
}

.card-price {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-old {
    font-size: 1.3rem;
    color: #ff5252;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-main {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #4ade80;
    text-shadow: 2px 2px 0 #000;
}

.price-period {
    font-size: 1.1rem;
    color: #AAA;
}

.card-savings {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 5px 10px;
    font-size: 1rem;
    margin-bottom: 15px;
    border: 1px solid #4ade80;
}

.card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0 10px;
}

.card-features li {
    font-size: 1.1rem;
    color: #CCC;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.card-features li:last-child {
    border-bottom: none;
}

.buy-button {
    width: 100%;
    padding: 15px 20px;
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    background-color: #4CAF50;
    color: #FFF;
    border: 3px solid #000;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.buy-button:hover:not(:disabled) {
    background-color: #66BB6A;
}

.buy-button:active:not(:disabled) {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0px #000;
}

.buy-button:disabled {
    background-color: #555;
    color: #888;
    cursor: not-allowed;
    opacity: 0.7;
}

.buy-button.abo-button {
    background-color: #3b82f6;
}

.buy-button.abo-button:hover:not(:disabled) {
    background-color: #60a5fa;
}

.benefits-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.benefits-section .section-title {
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-item {
    background-color: rgba(0, 0, 0, 0.3);
    border: 3px solid #000;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: inset 3px 3px 0px rgba(255,255,255,0.1), inset -3px -3px 0px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-text {
    font-size: 1.1rem;
    color: #CCC;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #333;
    border-top-color: #4ade80;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 20px;
    }

    .shop-card {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .price-main {
        font-size: 1.3rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }

    .benefits-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 500px) {
    .shop-section {
        margin-top: 20px;
        padding: 20px 0;
    }

    .shop-section .minecraft-title {
        font-size: 1.5rem;
    }

    .shop-section .minecraft-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .shop-grid {
        padding: 0 10px;
        gap: 15px;
    }

    .shop-card {
        padding: 20px 15px;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 0.8rem;
    }

    .card-badge {
        font-size: 0.85rem;
        padding: 4px 12px;
    }

    .uuid-input-container {
        padding: 0 10px;
    }

    .uuid-input {
        font-size: 1rem;
    }

    .check-btn {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefit-text {
        font-size: 1rem;
    }

    .card-features li {
        font-size: 1rem;
        padding: 6px 0;
    }

    .buy-button {
        padding: 12px 15px;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #1a1a1a;
    border: 3px solid #000;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: inset 3px 3px 0px rgba(255,255,255,0.1), inset -3px -3px 0px rgba(0,0,0,0.2);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    font-family: 'VT323', monospace;
}

.modal-close:hover {
    color: #ff5252;
}

.modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 15px;
}

.modal-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    color: #FFF;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 #000;
}

.modal-package {
    font-size: 1.3rem;
    color: #4ade80;
    text-align: center;
    margin-bottom: 25px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-label {
    font-size: 1.1rem;
    color: #CCC;
}

.modal-input {
    width: 100%;
    text-align: center;
}

.modal-status {
    padding: 12px 15px;
    font-size: 1.1rem;
    display: none;
    text-align: center;
}

.modal-status.active {
    display: block;
}

.modal-status.status-success {
    background: #1a2b1a;
    border: 2px solid #4ade80;
    color: #4ade80;
}

.modal-status.status-info {
    background: #1a1a2b;
    border: 2px solid #60a5fa;
    color: #60a5fa;
}

.modal-status.status-error {
    background: #2b1a1a;
    border: 2px solid #ff5252;
    color: #ff5252;
}

.modal-confirm-btn {
    margin-top: 10px;
}

.find-uuid-link {
    background: none;
    border: none;
    color: #60a5fa;
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 5px 0;
    margin-top: -5px;
}

.find-uuid-link:hover {
    color: #93c5fd;
}

.modal-content-small {
    max-width: 380px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #AAA;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 500px) {
    .modal-content {
        padding: 25px 15px;
        width: 95%;
    }

    .modal-title {
        font-size: 0.85rem;
    }

    .modal-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .modal-package {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .modal-input {
        font-size: 0.95rem;
        padding: 12px;
    }

    .modal-confirm-btn {
        padding: 12px 15px;
        font-size: 1.1rem;
    }

    .modal-subtitle {
        font-size: 1rem;
    }

    .find-uuid-link {
        font-size: 1rem;
    }
}

