/* =========================================
   Variables & Reset
   ========================================= */
   :root {
    /* Colors */
    --primary: #0f172a;        /* Deep Slate/Blue */
    --primary-light: #1e293b;
    --accent: #f59e0b;         /* Vibrant Amber/Orange for CTAs */
    --accent-hover: #d97706;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --success: #10b981;

    /* Card Brands Gradients */
    --amazon-grad: linear-gradient(135deg, #FF9900 0%, #FFB84D 100%);
    --visa-grad: linear-gradient(135deg, #1A1F71 0%, #F7B600 100%);
    --ps-grad: linear-gradient(135deg, #003791 0%, #0070D1 100%);
    --apple-grad: linear-gradient(135deg, #A2AAAD 0%, #E2E2E2 100%);
    --xbox-grad: linear-gradient(135deg, #107C10 0%, #17A117 100%);
    --starbucks-grad: linear-gradient(135deg, #00704A 0%, #00A862 100%);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky nav */
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   Typography & Utilities
   ========================================= */
h1, h2, h3, h4 {
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.highlight {
    color: var(--accent);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-btn:hover {
    animation: pulse 1s infinite;
}

/* =========================================
   Top Banner & Navigation
   ========================================= */
.top-banner {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.top-banner a {
    color: var(--primary);
    text-decoration: underline;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-icon {
    color: var(--accent);
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-main));
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #fef3c7;
    color: #b45309;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    color: var(--success);
    width: 18px;
    height: 18px;
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Abstract floating cards */
.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.decor-card {
    position: absolute;
    width: 240px;
    height: 150px;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    backdrop-filter: blur(10px);
}

.decor-card i {
    width: 48px;
    height: 48px;
}

.card-1 {
    background: var(--amazon-grad);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    background: var(--visa-grad);
    top: 40%;
    left: 30%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 2;
    animation: float 8s ease-in-out infinite reverse;
}

.card-3 {
    background: var(--ps-grad);
    top: 60%;
    left: 70%;
    transform: translate(-50%, -50%) rotate(10deg);
    z-index: 1;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) translateY(0px); }
    50% { transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) translateY(-20px); }
    100% { transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) translateY(0px); }
}
.card-1 { --rot: -5deg; }
.card-2 { --rot: -15deg; }
.card-3 { --rot: 10deg; }


/* =========================================
   Top Deals / Comparison Section
   ========================================= */
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.deal-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.deal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.deal-badge.top-pick {
    background: var(--accent);
}

.deal-image {
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.bg-amazon { background: var(--amazon-grad); }
.bg-visa { background: var(--visa-grad); }
.bg-playstation { background: var(--ps-grad); }
.bg-apple { background: var(--apple-grad); color: #333; }
.bg-xbox { background: var(--xbox-grad); }
.bg-starbucks { background: var(--starbucks-grad); }

.deal-image h3 {
    color: inherit;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.deal-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 16px;
    height: 16px;
}

.star.filled {
    color: #facc15;
    fill: #facc15;
}

.star.empty {
    color: #cbd5e1;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.deal-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.deal-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.deal-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.deal-features i {
    color: var(--success);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.deal-footer {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.price-range {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* =========================================
   How It Works
   ========================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    color: var(--accent);
}

.step-icon i {
    width: 32px;
    height: 32px;
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.testimonial-rating {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

.bg-gradient-1 { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.bg-gradient-2 { background: linear-gradient(135deg, #10b981, #3b82f6); }

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 500;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-disclosure {
    border-top: 1px solid #334155;
    padding-top: 3rem;
    margin-bottom: 3rem;
}

.disclosure-box {
    background-color: var(--primary-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent);
}

.disclosure-box h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.disclosure-box p {
    color: #cbd5e1;
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content p {
        margin: 0 auto 2rem auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .hero-image {
        display: none; /* Hide illustrative cards on tablet/mobile for simplicity */
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile menu handling below */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        text-align: center;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }
}

.bg-roblox{
    background: linear-gradient(135deg,#e2231a,#111);
    color:#fff;
}
.bg-googlepay{
    background: linear-gradient(135deg,#4285F4,#34A853);
    color:#fff;
}

.bg-paypal{
    background: linear-gradient(135deg,#003087,#009cde);
    color:#fff;
}
.bg-steam{
    background: linear-gradient(135deg,#171a21,#2a475e);
    color:#fff;
}

.bg-razorgold{
    background: linear-gradient(135deg,#00ff00,#000000);
    color:#fff;
}

.bg-target{
    background: linear-gradient(135deg,#cc0000,#ff4d4d);
    color:#fff;
}

.bg-sephora{
    background: linear-gradient(135deg,#000000,#ed145b);
    color:#fff;
}

.bg-nordstrom{
    background: linear-gradient(135deg,#1c1c1c,#8c8c8c);
    color:#fff;
}

.bg-bitcoin{
    background: linear-gradient(135deg,#f7931a,#000000);
    color:#fff;
}

.gcg-about-section{
  padding:60px 20px;
  background:#f8fafc;
}

.gcg-about-container{
  max-width:900px;
  margin:auto;
  line-height:1.7;
  color:#444;
  font-family:Arial, sans-serif;
}

.gcg-about-title{
  font-size:32px;
  margin-bottom:20px;
  text-align:center;
  color:#111;
}

.gcg-about-container p{
  margin-bottom:18px;
  font-size:16px;
}

.gcg-contact-section{
  padding:60px 20px;
  background:#f8fafc;
}

.gcg-contact-container{
  max-width:700px;
  margin:auto;
  background:#fff;
  padding:35px;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  font-family:Arial, sans-serif;
}

.gcg-contact-title{
  font-size:30px;
  text-align:center;
  margin-bottom:10px;
  color:#111;
}

.gcg-contact-desc{
  text-align:center;
  margin-bottom:25px;
  color:#555;
  line-height:1.6;
}

.gcg-form-group{
  margin-bottom:18px;
}

.gcg-form-group label{
  display:block;
  margin-bottom:6px;
  font-weight:600;
}

.gcg-form-group input,
.gcg-form-group textarea{
  width:100%;
  padding:10px;
  border:1px solid #ddd;
  border-radius:4px;
  font-size:15px;
}

.gcg-form-group input:focus,
.gcg-form-group textarea:focus{
  outline:none;
  border-color:#2563eb;
}

.gcg-contact-btn{
  width:100%;
  padding:12px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:5px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.gcg-contact-btn:hover{
  background:#1e4fd1;
}

@media (max-width:600px){
  .gcg-contact-container{
    padding:25px;
  }
}