/* Destiny Code Matrix - Frontend Styles */

.dcm-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.dcm-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 30px;
    color: white;
}

.dcm-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.dcm-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

/* Promo Banner */
.dcm-promo-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.dcm-promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.dcm-promo-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dcm-promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.dcm-promo-left h3 {
    margin: 0 0 20px;
    color: #ffd700;
    font-size: 1.3rem;
}

.dcm-promo-features {
    display: flex;
    gap: 25px;
}

.dcm-promo-item {
    display: flex;
    gap: 12px;
    color: white;
}

.dcm-promo-icon {
    font-size: 28px;
    line-height: 1;
}

.dcm-promo-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.dcm-promo-item p {
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    max-width: 180px;
}

.dcm-promo-prices {
    display: flex;
    gap: 15px;
}

.dcm-promo-price {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 100px;
    position: relative;
}

.dcm-promo-popular {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: scale(1.05);
}

.dcm-popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #1a1a2e;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
}

.dcm-price-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    margin-bottom: 5px;
}

.dcm-price-amount {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 800;
}

/* Calculator Form */
.dcm-calculator-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.dcm-form-title {
    margin: 0 0 20px;
    text-align: center;
    color: #333;
    font-size: 1.2rem;
}

.dcm-form-note {
    text-align: center;
    color: #28a745;
    margin: 15px 0 0;
    font-size: 14px;
    font-weight: 500;
}

.dcm-form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.dcm-form-group {
    flex: 1;
    min-width: 100px;
}

.dcm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.dcm-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.dcm-form-group input:focus {
    outline: none;
    border-color: #667eea;
}

/* Buttons */
.dcm-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.dcm-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dcm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.dcm-btn-premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-size: 18px;
    padding: 15px 40px;
}

.dcm-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
}

.dcm-btn-full {
    width: 100%;
}

/* Results Card */
.dcm-results-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.dcm-results-card h2 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.dcm-main-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 30px 0;
}

.dcm-stat {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    min-width: 150px;
}

.dcm-stat-character {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
}

.dcm-stat-portrait {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
}

.dcm-stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.dcm-stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.dcm-stat-name {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    margin-top: 5px;
}

.dcm-basic-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.dcm-point {
    font-size: 16px;
}

.dcm-point span {
    color: #666;
}

.dcm-point strong {
    color: #333;
}

/* Premium CTA */
.dcm-premium-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.dcm-premium-cta h3 {
    margin-top: 0;
    font-size: 28px;
}

.dcm-premium-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    display: inline-block;
}

.dcm-premium-features li {
    margin: 10px 0;
    font-size: 16px;
}

.dcm-price {
    margin: 30px 0;
}

.dcm-price-amount {
    font-size: 48px;
    font-weight: bold;
}

.dcm-price-currency {
    font-size: 24px;
    opacity: 0.8;
}

/* Modal */
.dcm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.dcm-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.dcm-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.dcm-modal-close:hover {
    color: #333;
}

.dcm-modal-content h2 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.dcm-modal-content .dcm-form-group {
    margin-bottom: 20px;
}

.dcm-modal-content small {
    color: #666;
    font-size: 12px;
}

.dcm-payment-info {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.dcm-payment-info h4 {
    margin-top: 0;
    color: #856404;
}

.dcm-payment-info p {
    margin: 8px 0;
    color: #856404;
}

.dcm-payment-note {
    font-weight: bold;
    margin-top: 15px !important;
}

/* Success Modal */
.dcm-success-content {
    text-align: center;
}

.dcm-success-content h2 {
    color: #28a745;
}

.dcm-info-box {
    background: #cce5ff;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.dcm-info-box p {
    margin: 0;
    color: #004085;
}

/* Responsive */
@media (max-width: 768px) {
    .dcm-form-row {
        flex-direction: column;
    }
    
    .dcm-main-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .dcm-stat {
        min-width: auto;
    }
    
    .dcm-basic-points {
        flex-direction: column;
        gap: 10px;
    }
    
    .dcm-header h1 {
        font-size: 1.8rem;
    }
    
    .dcm-price-amount {
        font-size: 36px;
    }
    
    .dcm-points-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Destiny responsive */
    .dcm-destiny-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dcm-destiny-result {
        font-size: 28px;
    }
    
    /* Paths responsive */
    .dcm-paths-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dcm-path-item {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* Chakra responsive */
    .dcm-chakra-header,
    .dcm-chakra-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .dcm-chakra-col {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .dcm-chakra-name small {
        display: none;
    }
}

/* Free Report Matrix Diagram */
.dcm-free-diagram {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin: 20px 0;
}

.dcm-free-diagram svg {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* All Points Grid */
.dcm-all-points {
    margin-top: 30px;
}

.dcm-all-points h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 22px;
}

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

.dcm-points-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.dcm-points-section h4 {
    margin: 0 0 15px 0;
    color: #667eea;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.dcm-points-table {
    width: 100%;
    border-collapse: collapse;
}

.dcm-points-table td {
    padding: 8px 10px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.dcm-points-table td:first-child {
    color: #666;
}

.dcm-points-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #333;
}

.dcm-points-table tr:last-child td {
    border-bottom: none;
}

.dcm-points-table tr.dcm-highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
}

.dcm-points-table tr.dcm-highlight td {
    font-weight: 700;
    color: #856404;
}

/* Destiny Section */
.dcm-destiny-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
}

.dcm-destiny-section h3 {
    margin: 0 0 20px;
    color: #0369a1;
    text-align: center;
}

.dcm-destiny-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dcm-destiny-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid;
}

.dcm-destiny-1 { border-color: #22c55e; }
.dcm-destiny-2 { border-color: #3b82f6; }
.dcm-destiny-3 { border-color: #a855f7; }

.dcm-destiny-age {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.dcm-destiny-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.dcm-destiny-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.dcm-destiny-result {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dcm-destiny-name {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Love & Money Paths */
.dcm-paths-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.dcm-path-card {
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.dcm-love-path {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.dcm-money-path {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dcm-path-card h4 {
    margin: 0 0 15px;
    font-size: 16px;
}

.dcm-love-path h4 { color: #be185d; }
.dcm-money-path h4 { color: #15803d; }

.dcm-path-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dcm-path-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.dcm-love-path .dcm-path-item {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.dcm-money-path .dcm-path-item {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.dcm-path-arrow {
    font-size: 20px;
    color: #9ca3af;
}

.dcm-path-desc {
    margin: 15px 0 0;
    font-size: 13px;
    color: #666;
}

/* Chakra Health Map */
.dcm-chakra-preview {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 15px;
}

.dcm-chakra-preview h3 {
    margin: 0 0 20px;
    text-align: center;
    color: #7c3aed;
}

.dcm-chakra-grid {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.dcm-chakra-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.dcm-chakra-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}

.dcm-chakra-row:last-child {
    border-bottom: none;
}

.dcm-chakra-col {
    padding: 12px 15px;
}

.dcm-chakra-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.dcm-chakra-name small {
    color: #9ca3af;
    font-size: 11px;
}

.dcm-chakra-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dcm-chakra-num {
    text-align: center;
    font-weight: 600;
    color: #333;
}

.dcm-chakra-result {
    background: #f8fafc;
}

.dcm-chakra-result .dcm-chakra-num {
    color: #667eea;
}

.dcm-chakra-note {
    text-align: center;
    margin: 15px 0 0;
    font-size: 13px;
    color: #9333ea;
}

/* Premium CTA - Updated */
.dcm-premium-features {
    list-style: none;
    padding: 0;
    margin: 25px auto;
    text-align: left;
    display: inline-block;
}

.dcm-premium-features li {
    margin: 8px 0;
    font-size: 14px;
}

/* Premium Options Grid */
.dcm-premium-options {
    margin: 40px 0;
}

.dcm-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dcm-premium-personal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.dcm-premium-compatibility {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    position: relative;
}

.dcm-popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #fbbf24;
    color: #92400e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.dcm-btn-love {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: white !important;
}

.dcm-btn-love:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
}

/* Modal Wide */
.dcm-modal-wide {
    max-width: 700px !important;
    width: 95%;
}

.dcm-compat-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.dcm-person-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.dcm-person-section h4 {
    margin: 0 0 15px;
    color: #667eea;
    font-size: 16px;
}

.dcm-form-row-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dcm-form-row-small .dcm-form-group {
    min-width: auto;
}

.dcm-form-row-small input {
    padding: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .dcm-options-grid {
        grid-template-columns: 1fr;
    }
    
    .dcm-compat-form-grid {
        grid-template-columns: 1fr;
    }
    
    .dcm-modal-wide {
        max-width: 95% !important;
    }
    
    /* Promo Banner Responsive */
    .dcm-promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .dcm-promo-left h3 {
        font-size: 1.1rem;
    }
    
    .dcm-promo-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .dcm-promo-item {
        justify-content: center;
        text-align: left;
    }
    
    .dcm-promo-item p {
        max-width: 100%;
    }
    
    .dcm-promo-prices {
        flex-direction: row;
        gap: 10px;
    }
    
    .dcm-promo-price {
        flex: 1;
        padding: 12px 15px;
    }
    
    .dcm-price-amount {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .dcm-premium-features {
        columns: 1;
    }
}

/* ========================================
   PREMIUM REPORT NEW SECTIONS
   ======================================== */

/* Destiny Section */
.dcm-zone-destiny {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.dcm-zone-destiny h4 {
    color: #0369a1;
}

.dcm-destiny-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.dcm-destiny-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid;
}

.dcm-destiny-1 { border-color: #22c55e; }
.dcm-destiny-2 { border-color: #3b82f6; }
.dcm-destiny-3 { border-color: #a855f7; }

.dcm-destiny-age {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.dcm-destiny-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.dcm-destiny-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.dcm-destiny-result {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
}

.dcm-destiny-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.dcm-destiny-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Paths Section (Love & Money) */
.dcm-zone-paths {
    background: #fff;
}

.dcm-paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.dcm-path-box {
    padding: 25px;
    border-radius: 15px;
}

.dcm-love-box {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.dcm-money-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dcm-path-box h4 {
    margin: 0 0 15px;
    font-size: 18px;
    text-align: center;
}

.dcm-love-box h4 { color: #be185d; }
.dcm-money-box h4 { color: #15803d; }

.dcm-path-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.dcm-path-item {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.dcm-love-box .dcm-path-item {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.dcm-money-box .dcm-path-item {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.dcm-path-arrow {
    font-size: 24px;
    color: #9ca3af;
}

.dcm-path-desc {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.dcm-path-details {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
}

.dcm-path-detail {
    margin-bottom: 12px;
}

.dcm-path-detail strong {
    display: block;
    color: #333;
    margin-bottom: 3px;
}

.dcm-path-detail span {
    color: #666;
    font-size: 14px;
}

.dcm-path-detail p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

/* Chakra Section */
.dcm-zone-chakra {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.dcm-zone-chakra h4 {
    color: #7c3aed;
}

.dcm-chakra-table-full {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.dcm-chakra-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.dcm-chakra-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}

.dcm-chakra-row:last-child {
    border-bottom: none;
}

.dcm-chakra-col {
    padding: 14px 18px;
    text-align: center;
}

.dcm-chakra-name-col {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.dcm-chakra-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Chakra Colors */
.dcm-chakra-sahasrara { background: #9333ea; }
.dcm-chakra-ajna { background: #4f46e5; }
.dcm-chakra-vissudha { background: #0ea5e9; }
.dcm-chakra-anahata { background: #22c55e; }
.dcm-chakra-manipura { background: #eab308; }
.dcm-chakra-svadhisthana { background: #f97316; }
.dcm-chakra-muladhara { background: #ef4444; }

.dcm-chakra-result-row {
    background: #f8fafc;
}

.dcm-chakra-result-row .dcm-chakra-col {
    color: #667eea;
}

.dcm-chakra-analysis {
    margin-top: 25px;
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.dcm-chakra-analysis h5 {
    margin: 0 0 15px;
    color: #7c3aed;
}

.dcm-chakra-detail {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.dcm-chakra-detail:last-child {
    border-bottom: none;
}

.dcm-chakra-detail strong {
    color: #333;
}

.dcm-chakra-detail span {
    color: #666;
}

.dcm-chakra-detail p {
    width: 100%;
    margin: 8px 0 0;
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

/* Responsive for Premium Report Sections */
@media (max-width: 768px) {
    .dcm-destiny-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dcm-destiny-result {
        font-size: 32px;
    }
    
    .dcm-paths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dcm-path-item {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .dcm-chakra-header,
    .dcm-chakra-row {
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
    }
    
    .dcm-chakra-col {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .dcm-chakra-name-col span {
        font-size: 12px;
    }
}

/* ========================================
   TAROT READING STYLES
   ======================================== */

.dcm-tarot-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dcm-tarot-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    margin-bottom: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.dcm-tarot-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.dcm-tarot-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
}

.dcm-tarot-header h2 {
    margin: 0;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.dcm-tarot-subtitle {
    margin: 15px 0 0;
    opacity: 0.9;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Instructions */
.dcm-tarot-instructions {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dcm-instruction-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.dcm-tarot-instructions h3 {
    font-size: 1.8rem;
    margin: 0 0 20px;
    color: #1a1a2e;
}

.dcm-tarot-instructions p {
    color: #666;
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Card Deck */
.dcm-tarot-deck {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dcm-deck-header {
    text-align: cent/* Tarot Card Images */
.dcm-tarot-image {
    width: 100%;
    height: auto;
    max-height: 100px; /* 180px → 100px жижиг болго */
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 6px;
}

.dcm-card-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px; /* 8px → 4px */
    background: rgba(255,255,255,0.95);
    border-radius: 0 0 6px 6px;
    margin-top: auto;
}

.dcm-card-back {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px; /* 12px → 8px */
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
}

.dcm-card-number {
    font-size: 12px; /* 16px → 12px */
    font-weight: 700;
    color: #ffd700;
}

.dcm-card-name {
    font-size: 10px; /* 13px → 10px */
    font-weight: 600;
    color: #fff;
    text-align: center;
}

/* Card Deck */
.dcm-tarot-deck {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dcm-deck-header {
    text-align: center;
    margin-bottom: 25px;
}

.dcm-deck-header h3 {
    color: #1a1a2e;
    margin: 0 0 10px;
}

.dcm-deck-header p {
    color: #666;
    margin: 0;
}

.dcm-card-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 11 → 6 багана */
    gap: 12px;
    margin-bottom: 30px;
    max-width: 800px; /* Нийт өргөн хязгаарла */
    margin-left: auto;
    margin-right: auto;
}

.dcm-tarot-card {
    aspect-ratio: 2/3;
    cursor: pointer;
    perspective: 1000px;
}

.dcm-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.dcm-card-inner.dcm-flipped {
    transform: rotateY(180deg);
}

.dcm-card-front,
.dcm-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dcm-card-front {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #667eea;
}

.dcm-card-back-design {
    font-size: 24px;
    opacity: 0.5;
}

.dcm-card-back {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    transform: rotateY(180deg);
    border: 2px solid #cc8800;
}

.dcm-card-number {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
}

.dcm-card-name {
    font-size: 10px;
    color: #1a1a2e;
    text-align: center;
    padding: 0 5px;
    font-weight: 600;
}

.dcm-tarot-card.dcm-card-selected {
    transform: scale(1.05);
}

.dcm-tarot-card:hover:not(.dcm-card-selected) {
    transform: translateY(-5px);
}

/* Selected Cards Slots */
.dcm-selected-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.dcm-position-slot {
    width: 100px;
    min-height: 140px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.3s;
}

.dcm-position-slot.dcm-slot-filled {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dcm-slot-placeholder {
    text-align: center;
    color: #999;
}

.dcm-slot-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.dcm-slot-name {
    font-size: 12px;
}

.dcm-slot-card {
    text-align: center;
    margin-bottom: 10px;
}

.dcm-slot-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.dcm-slot-card-name {
    font-size: 11px;
    opacity: 0.9;
}

.dcm-slot-pos {
    text-align: center;
    opacity: 0.8;
    font-size: 11px;
}

/* Buttons */
.dcm-btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.dcm-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dcm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.dcm-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.dcm-btn-primary.dcm-btn-ready {
    animation: pulse 1.5s infinite;
}

.dcm-btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.dcm-btn-secondary:hover {
    background: #667eea;
    color: white;
}

.dcm-btn-premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
}

.dcm-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.dcm-btn-lg {
    padding: 15px 35px;
    font-size: 18px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(102, 126, 234, 0); }
}

/* Reading Result */
.dcm-tarot-result {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dcm-result-header {
    text-align: center;
    margin-bottom: 30px;
}

.dcm-result-header h3 {
    color: #1a1a2e;
    margin: 0 0 10px;
    font-size: 1.8rem;
}

.dcm-result-date {
    color: #666;
}

.dcm-result-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.dcm-result-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.dcm-result-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px;
    text-align: center;
}

.dcm-result-position {
    font-size: 13px;
    font-weight: 600;
}

/* Result Card Image */
.dcm-result-card-image {
    padding: 15px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dcm-result-tarot-img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.dcm-result-card-main {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    padding: 20px 10px;
    text-align: center;
}

.dcm-result-card-num {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
}

.dcm-result-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.dcm-result-card-meaning {
    padding: 15px;
    background: white;
}

.dcm-meaning-plus {
    font-size: 13px;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.5;
}

.dcm-meaning-context {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Summary */
.dcm-summary-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.dcm-summary-box h4 {
    margin: 0 0 15px;
    color: #1a1a2e;
}

.dcm-summary-cards {
    margin-bottom: 15px;
    color: #666;
}

.dcm-summary-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Social Share */
.dcm-social-share {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
}

.dcm-social-share h4 {
    margin: 0 0 15px;
    color: #1a1a2e;
}

.dcm-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.dcm-share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.dcm-share-facebook {
    background: #1877f2;
    color: white;
}

.dcm-share-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.dcm-share-twitter {
    background: #1da1f2;
    color: white;
}

.dcm-share-twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.dcm-share-copy {
    background: white;
    color: #333;
    border: 2px solid #ddd;
}

.dcm-share-copy:hover {
    border-color: #667eea;
    color: #667eea;
}

.dcm-share-copy.dcm-copied {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
}

.dcm-share-icon {
    font-size: 18px;
}

/* New Reading */
.dcm-new-reading {
    text-align: center;
    margin-bottom: 30px;
}

/* Premium Banner */
.dcm-premium-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.dcm-premium-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.dcm-premium-content {
    position: relative;
    z-index: 1;
}

.dcm-premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dcm-premium-banner h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.dcm-premium-subtitle {
    opacity: 0.9;
    margin: 0 0 25px;
}

.dcm-premium-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.dcm-premium-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.dcm-feature-icon {
    color: #22c55e;
}

.dcm-premium-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.dcm-price-card {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 15px;
    position: relative;
}

.dcm-price-featured {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.dcm-price-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #22c55e;
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
}

.dcm-price-label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.dcm-price-amount {
    font-size: 24px;
    font-weight: 700;
}

.dcm-premium-guarantee {
    margin: 15px 0 0;
    font-size: 13px;
    opacity: 0.8;
}

/* ========================================
   DAILY CARD STYLES
   ======================================== */

.dcm-daily-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dcm-daily-card-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.dcm-daily-header {
    text-align: center;
    margin-bottom: 25px;
}

.dcm-daily-date {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 10px;
}

.dcm-daily-header h2 {
    margin: 0;
    color: #1a1a2e;
    font-size: 1.8rem;
}

.dcm-daily-card-display {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.dcm-daily-card-wrapper {
    position: relative;
}

/* Daily Card Tarot Image */
.dcm-daily-tarot-image {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.dcm-daily-img {
    width: 120px; /* 180px → 120px жижиг */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.dcm-daily-img:hover {
    transform: scale(1.05);
}

.dcm-daily-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.dcm-daily-card-main {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 220px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.3);
}

.dcm-daily-card-number {
    font-size: 60px;
    font-weight: 800;
    color: #1a1a2e;
}

.dcm-daily-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
}

.dcm-daily-message {
    margin-bottom: 25px;
}

.dcm-daily-quote {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.dcm-quote-icon {
    font-size: 30px;
}

.dcm-daily-quote p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.dcm-daily-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.dcm-daily-detail {
    padding: 20px;
    border-radius: 12px;
}

.dcm-detail-plus {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dcm-detail-minus {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.dcm-daily-detail h4 {
    margin: 0 0 10px;
    font-size: 14px;
}

.dcm-daily-detail p {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.dcm-daily-share {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dcm-daily-share h4 {
    margin: 0 0 15px;
    color: #666;
    font-size: 14px;
}

/* Email Subscription */
.dcm-subscribe-section {
    margin-bottom: 25px;
}

.dcm-subscribe-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
}

.dcm-subscribe-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.dcm-subscribe-box h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.dcm-subscribe-box > p {
    margin: 0 0 20px;
    opacity: 0.9;
}

.dcm-subscribe-form {
    max-width: 400px;
    margin: 0 auto;
}

.dcm-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.dcm-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.dcm-input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.dcm-subscribe-note {
    margin: 15px 0 0;
    font-size: 12px;
    opacity: 0.8;
}

.dcm-subscribe-success {
    padding: 20px;
}

.dcm-success-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.dcm-subscribe-success h4 {
    margin: 0 0 10px;
}

.dcm-subscribe-success p {
    margin: 0;
    opacity: 0.9;
}

/* Daily CTA */
.dcm-daily-cta {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.dcm-cta-content h3 {
    margin: 0 0 10px;
    color: #1a1a2e;
}

.dcm-cta-content p {
    margin: 0 0 20px;
    color: #666;
}

/* Daily Premium Mini */
.dcm-daily-premium {
    margin-bottom: 25px;
}

.dcm-premium-mini {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.dcm-premium-mini-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
}

.dcm-premium-mini-content h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.dcm-premium-mini-content p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

/* Animations */
.dcm-fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dcm-shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive Tarot */
@media (max-width: 900px) {
    .dcm-card-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .dcm-result-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dcm-tarot-header h2 {
        font-size: 1.8rem;
    }
    
    .dcm-card-grid {
        grid-template-columns: repeat(4, 1fr); /* 5 → 4 багана */
        gap: 8px;
    }
    
    .dcm-tarot-image {
        max-height: 80px; /* Жижиг зураг mobile дээр */
    }
    
    .dcm-card-label {
        padding: 3px;
    }
    
    .dcm-card-number {
        font-size: 10px;
    }
    
    .dcm-card-name {
        font-size: 8px;
    }
    
    .dcm-selected-cards {
        gap: 10px;
    }
    
    .dcm-position-slot {
        width: 70px;
        min-height: 100px;
    }
    
    .dcm-slot-num {
        font-size: 24px;
    }
    
    .dcm-result-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .dcm-result-card:nth-child(5) {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .dcm-premium-features {
        flex-direction: column;
        align-items: center;
    }
    
    .dcm-premium-pricing {
        flex-direction: column;
        align-items: center;
    }
    
    .dcm-form-row {
        flex-direction: column;
    }
    
    .dcm-daily-details {
        grid-template-columns: 1fr;
    }
    
    .dcm-premium-mini {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .dcm-card-grid {
        grid-template-columns: repeat(3, 1fr); /* 4 → 3 жижиг утсанд */
        gap: 6px;
    }
    
    .dcm-tarot-image {
        max-height: 70px; /* Илүү жижиг */
    }
    
    .dcm-card-back {
        padding: 6px;
    }
    
    .dcm-daily-img {
        width: 100px; /* Daily card жижиг */
    }
    
    .dcm-position-slot {
        width: 60px;
        min-height: 90px;
    }
    
    .dcm-result-cards {
        grid-template-columns: 1fr;
    }
    
    .dcm-result-card:nth-child(5) {
        grid-column: span 1;
        max-width: none;
    }
    
    .dcm-share-buttons {
        flex-direction: column;
    }
    
    .dcm-share-btn {
        width: 100%;
        justify-content: center;
    }
}
