:root {
    --bg-color: #0b0b0d;
    --card-bg: rgba(30, 30, 35, 0.7);
    --accent: #007aff;
    --text: #ffffff;
    --sub-text: #a1a1a6;
    --glass-border: rgba(255, 255, 255, 0.12);
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top, #1c1c1e, #000000);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
    direction: ltr; /* گۆڕدرا بۆ ئینگلیزی */
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
}

.glass-card{
    margin-left: auto;
    margin-right: auto;
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    text-align: center;
    transform: perspective(1000px) translateZ(-10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	
}
.hack-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.tag-container {
    display: flex;
    justify-content: center; /* بۆکسەکە دەخاتە ناوەڕاست */
}

.tag {
    display: inline-block;
    padding: 8px 16px;
}

}

.ripple-effect {
	text-align: center;
    transition: transform 0.1s ease, background 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.ripple-effect:active {
    transform: scale(0.96) !important;
    opacity: 0.7;
}

.app-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

h1 { font-size: 22px; margin: 0 0 5px 0; font-weight: 700; }

.live-status {
    font-size: 12px;
    color: #34c759;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}

.dot {
    width: 8px;
    height: 8px;
    background: #34c759;
    border-radius: 50%;
    box-shadow: 0 0 10px #34c759;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.details-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 20px;
    margin: 20px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    border-radius: 12px;
    align-items: center;
}

.info-row:last-child { border-bottom: none; }
.label { color: var(--sub-text); }
.val { font-weight: 600; }
.bundle { font-family: monospace; font-size: 10px; color: var(--accent); opacity: 0.9; }
.status-signed { color: #34c759; font-size: 11px; font-weight: 800; text-transform: uppercase; }

.hack-details { text-align: left; margin-top: 15px; }
.hack-details p { font-size: 11px; color: var(--sub-text); margin-bottom: 10px; font-weight: bold; letter-spacing: 0.5px; }

.tag-container { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.actions { display: flex; flex-direction: column; gap: 10px; }
.btn {
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-main {
    background: var(--accent);
    color: white;
    padding: 16px;
    border-radius: 20px;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
}

.sub-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-sec {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 12px;
    border-radius: 15px;
    font-size: 14px;
}

.security-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    font-size: 10px;
    color: var(--sub-text);
    opacity: 0.7;
}
.bundle-wrapper{
    display:flex;
    align-items:center;
    gap:5px;
}

.bundle-icon{
    cursor:pointer;
    font-size:13px;
    color:#8e8e93;
    transition:0.25s ease;
}

.bundle-icon:hover{
    transform:scale(1.15);
}

.bundle-text{
    font-size:13px;
    font-weight:500;
    max-width:0;
    overflow:hidden;
    white-space:nowrap;
    transition:0.3s ease;
    opacity:0;
}

.bundle-wrapper.show .bundle-text{
    max-width:250px;
    opacity:1;
}

.bundle-wrapper.show .bundle-icon{
    color:#007aff;
}