
      
        .gp-container {
            max-width: 1024px;
            margin-left: auto;
            margin-right: auto;
        }
        .gp-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .gp-header h1 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }
        .gp-header p {
            font-size: 1.125rem;
            color: #475569;
        }
        .gp-card {
            background-color: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .gp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .gp-card-content {
            flex-grow: 1;
        }
        .gp-card-simple {
            text-align: center;
        }
        .gp-card-simple h4 {
            font-weight: 700;
            font-size: 1.125rem;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }
        .gp-card-simple p {
            color: #475569;
            font-size: 0.875rem;
        }
        .gp-icon-bg {
            background-color: #fef3c7;
            color: #b45309;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 1rem;
        }
        .gp-icon-bg svg {
            width: 24px;
            height: 24px;
        }
        .gp-gradient-text {
            background: linear-gradient(to right, #ca8a04, #facc15, #ca8a04);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .gp-section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .gp-formula-box {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            font-family: monospace, 'Vazirmatn';
            font-size: 1.5rem;
            letter-spacing: 2px;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        }
        .gp-grid {
            display: grid;
            gap: 1.5rem;
        }
        .gp-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
        @media (min-width: 640px) {
            .sm-gp-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (min-width: 1024px) {
            .lg-gp-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .lg-gp-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
            .lg-gp-col-span-3 { grid-column: span 3 / span 3; }
        }

        /* Accordion Styles */
        .gp-accordion-container {
            margin-top: 1rem;
            background-color: #f9fafb;
            border-radius: 0.5rem;
            border: 1px solid #e5e7eb;
        }
        .gp-accordion-header {
            padding: 0.75rem 1rem;
            font-weight: 600;
            color: #374151;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .gp-accordion-icon {
            font-size: 1.5rem;
            font-weight: 400;
            transition: transform 0.2s;
        }
        .gp-accordion-content {
            padding: 0 1rem 1rem 1rem;
            color: #4b5563;
            font-size: 0.9rem;
            border-top: 1px solid #e5e7eb;
            margin-top: 0.5rem;
            line-height: 1.7;
            text-align: right;
        }
        .gp-accordion-icon.rotated {
            transform: rotate(45deg);
        }
        .gp-hidden {
            display: none;
        }
        .gp-interactive-tool {
            margin-top: 1.5rem;
            background-color: white;
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
            border: 1px solid #e5e7eb;
        }
        .gp-candlestick-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            user-select: none;
        }
        .gp-candlestick-track {
            width: 20px;
            height: 200px;
            background-color: #e5e7eb;
            border-radius: 5px;
            position: relative;
            cursor: pointer;
            border: 2px solid #d1d5db;
        }
        .gp-candlestick-body {
            position: absolute;
            bottom: 0;
            width: 100%;
            border-radius: 2px;
        }
        .gp-xaucwx-candle { background-color: #ca8a04; }
        .gp-usdcwx-candle { background-color: #16a34a; }
        .gp-flex-container {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            width: 100%;
        }
        .gp-result-container {
            text-align: center;
        }
        .gp-result-container .gp-symbol {
            color: #ca8a04;
            font-size: 2.25rem;
            font-weight: 700;
        }
        .gp-result-container .gp-price {
            color: #1e3a8a;
            font-family: monospace;
            font-size: 3rem;
            font-weight: 700;
        }
        .gp-reset-button {
            background-color: #e5e7eb;
            color: #1f2937;
            font-weight: 700;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            transition: background-color 0.2s;
            border: none;
            cursor: pointer;
        }
        .gp-reset-button:hover {
            background-color: #d1d5db;
        }
        .gp-gemini-button {
            background: linear-gradient(135deg, #4f46e5, #818cf8);
            color: white;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
        }
        .gp-gemini-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
        }
        .gp-gemini-result-container {
            margin-top: 1.5rem;
            background-color: #eef2ff; 
            padding: 1rem; 
            border-radius: 0.5rem; 
            border: 1px solid #c7d2fe;
            text-align: right;
            line-height: 1.8;
        }
        .gp-text-center { text-align: center; }
        .gp-text-right { text-align: right; }
        .gp-mt-3 { margin-top: 0.75rem; }
        .gp-mt-6 { margin-top: 1.5rem; }
        .gp-mb-6 { margin-bottom: 1.5rem; }
        .gp-font-bold { font-weight: 700; }
