 .gift-hero {
    position: relative;
    padding: 150px 0 100px;
    background-color: #0a0a0a;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

 .gift-bokeh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(245, 185, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    filter: blur(80px);
    z-index: 1;
}

 .gift-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.luxury-card {
    position: relative;
    width: 400px;
    height: 250px;
    perspective: 1000px;
    margin: 0 auto;
}

.card-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border-radius: 15px;
    border: 1px solid rgba(245, 185, 0, 0.3);
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
     animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-10deg); }
    50% { transform: translateY(-20px) rotateX(10deg) rotateY(5deg); }
}

 .card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245, 185, 0, 0.2),
        transparent
    );
    transform: skewX(-20deg);
    animation: foilShine 4s infinite;
}

@keyframes foilShine {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37, #f5b900);
    border-radius: 6px;
    margin-bottom: 20px;
}

.val-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-header);
}

 @media (max-width: 768px) {
    .gift-hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .gift-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .luxury-card {
        width: 100%;
        max-width: 320px;
        height: 200px;
    }

    .gift-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .gift-hero-content {
        order: 1;
    }
    
    .gift-card-visual {
        order: 2;
    }
}










 .gift-selection {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

 .selection-card {
    background: var(--bg-surface);
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
     opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.selection-card:nth-child(2) { animation-delay: 0.2s; }
.selection-card:nth-child(3) { animation-delay: 0.4s; }

 .card-preview {
    height: 180px;
    background: #0a0a0a;
    border-radius: 10px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-viz {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-header);
    z-index: 2;
    transition: transform 0.5s ease;
}

 .silver-tier .viz-amount { color: #c0c0c0; }
.gold-tier .viz-amount { color: var(--primary-color); }
.carbon-tier .viz-amount { color: #555; text-shadow: 0 0 10px rgba(0,0,0,0.5); }

 .selection-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.selection-card:hover .card-viz {
    transform: scale(1.2);
}

 .card-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.5s;
}

.selection-card:hover .card-glow-effect {
    left: 150%;
    transition: 0.8s;
}

 .featured-gift {
    border-color: rgba(245, 185, 0, 0.3);
    background: linear-gradient(180deg, var(--bg-surface) 0%, #1a1a1a 100%);
}

.selection-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-header);
}

.selection-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

 @media (max-width: 768px) {
    .gift-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .selection-card {
        padding: 30px 20px;
        text-align: center;
    }

    .selection-card:hover {
        transform: translateY(-10px);  
    }

    .card-preview {
        height: 160px;
    }
}









 .performance-offer {
    position: relative;
    padding: 100px 0;
    background-color: #050505;
    overflow: hidden;
}

 .circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(245, 185, 0, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(245, 185, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.offer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

 .offer-box {
    background: var(--bg-surface);
    padding: 60px;
    border-radius: var(--radius);
    border: 2px solid var(--road-gray);
    position: relative;
    text-align: center;
     box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.offer-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(245, 185, 0, 0.15);
}

.offer-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 5px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.offer-price {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-header);
}

 .countdown-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.time-block {
    text-align: center;
}

.time-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: monospace;  
}

.time-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.time-divider {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-muted);
    margin-top: 5px;
}

 @media (max-width: 768px) {
    .offer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .offer-box {
        padding: 40px 20px;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .countdown-timer {
        justify-content: center;
    }

    .time-num {
        font-size: 1.8rem;
    }
}









 .balance-checker {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.balance-container {
    max-width: 800px;
    margin: 0 auto;
}

 .checker-card {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    padding: 80px 60px;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    position: relative;
    overflow: hidden;  
    text-align: center;
    box-shadow: var(--shadow-industrial);
}

 .scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 15px var(--primary-color);
    z-index: 10;
    animation: laserScan 4s linear infinite;
}

@keyframes laserScan {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.checker-content {
    position: relative;
    z-index: 5;
}

.checker-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1rem;
}

 .input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.balance-input {
    width: 100%;
    background: #000;
    border: 1px solid var(--road-gray);
    padding: 20px;
    border-radius: 4px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;  
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 4px;
    outline: none;
    transition: var(--transition);
}

.balance-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(245, 185, 0, 0.1);
}

.security-note {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

 @media (max-width: 768px) {
    .checker-card {
        padding: 60px 25px;
        margin: 0 15px;
    }

    .balance-input {
        font-size: 1.1rem;
        padding: 15px;
        letter-spacing: 2px;
    }

    .main-title {
        font-size: 2rem;
    }
    
     .scan-line {
        height: 3px;
    }
}









 .support-portal {
    position: relative;
    padding: 100px 0;
    background-color: #0a0a0a;
    overflow: hidden;
}

 .support-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(245, 185, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 185, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

 .support-card {
    position: relative;
    padding: 2px;  
    background: transparent;
    border-radius: var(--radius);
    overflow: hidden;
}

.card-glow-border {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        var(--primary-color)
    );
    animation: rotateGlow 4s linear infinite;
    z-index: 1;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-inner-content {
    position: relative;
    background: #111;
    padding: 50px;
    border-radius: var(--radius);
    z-index: 2;
    text-align: center;
}

 .recovery-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recovery-input {
    background: #000;
    border: 1px solid var(--road-gray);
    padding: 15px;
    color: var(--text-main);
    border-radius: 4px;
    outline: none;
}

.recovery-input:focus {
    border-color: var(--primary-color);
}

 .contact-methods {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-header);
}

 @media (max-width: 768px) {
    .support-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .card-inner-content {
        padding: 40px 20px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .contact-item .value {
        font-size: 1rem;
    }
}










 .rewards-milestones {
    padding: 100px 0;
    background-color: #0c0c0c;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.milestone-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    text-align: center;
    transition: var(--transition);
}

 .gauge-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
}

.gauge-svg {
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: #222;
    stroke-width: 8;
}

.gauge-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283; 
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

 .p-30 { stroke-dashoffset: 200; }
.p-60 { stroke-dashoffset: 120; }
.p-100 { stroke-dashoffset: 0; }

.gauge-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    color: var(--text-header);
    font-size: 1.1rem;
}

 .active-tier {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(245, 185, 0, 0.1);
    background: linear-gradient(180deg, var(--bg-surface), #1a1a1a);
}

.milestone-info h4 {
    color: var(--text-header);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.milestone-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

 .gauge-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283; 
    transition: stroke-dashoffset 2s cubic-bezier(0.17, 0.85, 0.43, 1);
}

 .milestone-card.visible .p-30 { stroke-dashoffset: 200; }
.milestone-card.visible .p-60 { stroke-dashoffset: 120; }
.milestone-card.visible .p-100 { stroke-dashoffset: 0; }

 .milestone-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease;
}

.milestone-card.visible {
    opacity: 1;
    transform: translateY(0);
}

 @media (max-width: 768px) {
    .milestone-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .milestone-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 30px 20px;
        gap: 20px;
    }

    .gauge-box {
        margin: 0;
        flex-shrink: 0;
        width: 80px;
        height: 80px;
    }

    .gauge-val { font-size: 0.9rem; }
}










 .live-status {
    padding: 100px 0;
    background-color: #050505;
    position: relative;
}

.status-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

 .feed-list {
    margin-top: 40px;
    position: relative;
    padding-left: 30px;
    border-left: 1px solid var(--road-gray);
}

.feed-item {
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s ease;
}

.feed-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.pulse-node {
    position: absolute;
    left: -35px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.feed-item.visible .pulse-node {
    animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 185, 0, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(245, 185, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 185, 0, 0); }
}

.feed-time {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
}

 .terminal-box {
    background: #000;
    border: 1px solid var(--road-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-industrial);
}

.terminal-top {
    background: #111;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-body {
    padding: 30px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #444;
}

.primary-text { color: var(--primary-color); }

 @media (max-width: 768px) {
    .status-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .status-visual {
        order: 2;
    }

    .status-feed {
        order: 1;
    }
}









 .ignition-cta {
    position: relative;
    padding: 150px 0;
    background-color: #080808;
    overflow: hidden;
    text-align: center;
}

 .cta-visual-engine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(245, 185, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-top: 2px solid var(--primary-color);
    animation: rotateClockwise 10s linear infinite;
}

.ring-2 {
    width: 550px;
    height: 550px;
    border-bottom: 2px solid var(--primary-color);
    animation: rotateCounter 15s linear infinite;
    opacity: 0.5;
}

@keyframes rotateClockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounter {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

 .cta-container {
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.cta-container.visible {
    opacity: 1;
    transform: scale(1);
}

.cta-description {
    max-width: 550px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

 .btn-ignition {
    position: relative;
    display: inline-block;
    padding: 22px 60px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-glow-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 60px;
    opacity: 0;
    transition: 0.4s;
}

.btn-ignition:hover .btn-glow-ring {
    opacity: 1;
    transform: scale(1.1);
}

 @media (max-width: 768px) {
    .ignition-cta {
        padding: 100px 0;
    }

    .ring-1 { width: 300px; height: 300px; }
    .ring-2 { width: 400px; height: 400px; }

    .main-title {
        font-size: 2.2rem;
    }

    .btn-ignition {
        width: 80%;
        padding: 18px 30px;
        font-size: 0.9rem;
    }
}