/* Premium Download Box */
.gp-software-download-box {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.gp-software-download-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.gp-download-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.gp-download-header svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
}
.gp-download-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1e293b;
}
.gp-download-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}
.gp-detail-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.gp-detail-item.full-width {
    grid-column: 1 / -1;
}
.gp-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.gp-detail-item.half-width {
    margin: 0;
}
.gp-detail-item span {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 5px;
}
.gp-detail-item strong {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}
.gp-download-btn-wrap {
    text-align: center;
}
.gp-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    color: white !important;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.gp-download-btn svg {
    width: 18px;
    height: 18px;
}
.gp-download-btn:hover {
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Download Page Styling */
.gp-download-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.gp-download-card {
    background: white;
    border-radius: 16px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.gp-download-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.gp-download-icon svg {
    width: 60px;
    height: 60px;
    color: #3b82f6;
    margin-bottom: 20px;
}
.gp-download-card h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin: 0 0 25px 0;
}
.gp-download-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.gp-meta-item {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 8px;
    min-width: 120px;
}
.gp-meta-item span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.gp-meta-item strong {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}
.gp-timer-section {
    margin: 30px 0;
}
.gp-countdown-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}
.gp-circle-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.gp-circle-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 8;
}
.gp-circle-fg {
    fill: none;
    stroke: #3b82f6;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}
.gp-countdown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}
.gp-timer-section p {
    color: #64748b;
    font-size: 1rem;
}
.gp-timer-section p span {
    font-weight: 600;
    color: #1e293b;
}
.gp-download-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    color: white !important;
    padding: 10px 40px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.gp-download-action-btn svg {
    width: 20px;
    height: 20px;
}
.gp-download-action-btn:hover {
    background: linear-gradient(90deg, #059669, #0d9488);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

/* Error Message Styling */
.gp-error-card {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}
.gp-error-card .gp-download-icon svg {
    color: #ef4444;
    width: 70px;
    height: 70px;
}
.gp-error-card h2 {
    color: #b91c1c;
    margin-bottom: 15px;
}
.gp-error-card p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.gp-error-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: white !important;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.gp-error-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}
.gp-error-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .gp-download-details {
        grid-template-columns: 1fr;
    }
    .gp-detail-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gp-download-card {
        padding: 25px;
    }
    .gp-download-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .gp-setting-row {
        flex-direction: column;
        gap: 10px;
    }
    .gp-setting-label {
        min-width: auto;
    }
}
@media (max-width: 480px) {
    .gp-software-download-box {
        padding: 20px;
    }
    .gp-download-card {
        padding: 20px 15px;
    }
    .gp-countdown-circle {
        width: 120px;
        height: 120px;
    }
    .gp-countdown-text {
        font-size: 2rem;
    }
}