:root {
    --bg-primary: #050605;
    --bg-secondary: #0a0d0a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-glow: rgba(52, 211, 153, 0.15);
    
    --gradient-start: #34d399;
    --gradient-end: #047857;
    --gradient-success: #10b981;
    --gradient-warning: #f59e0b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Starry Background Canvas */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.mouse-spark {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.8), 0 0 20px rgba(4, 120, 87, 0.6);
    animation: spark-fade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes spark-fade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

/* Decorative Glows */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}
body::before {
    top: -200px;
    left: -200px;
    background: var(--gradient-start);
}
body::after {
    bottom: 20vh;
    right: -200px;
    background: var(--gradient-end);
}

/* Typography Options */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 12px 24px;
    z-index: 1000;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-primary);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 110px 24px 40px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--card-bg); border: 1px solid var(--card-border); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 24px;
    padding: 32px 48px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--accent-glow);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
    transition: transform 0.15s ease;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Contributions / Games Section */
.contributions-section {
    padding: 20px 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 28px;
}

.game-card {
    background: var(--card-bg); border: 1px solid var(--card-border); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 40px rgba(4, 120, 87, 0.15);
}

.game-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #000;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-thumb img {
    transform: scale(1.05);
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gradient-success);
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 20px;
}

.game-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.game-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.game-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid var(--card-border);
    padding-top: 16px;
}

.game-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 60px;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-key {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Portfolio Section */
.portfolio-section {
    padding: 40px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.hover-hint {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-hint 2s ease-in-out infinite;
}

@keyframes pulse-hint {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
}

.portfolio-card {
    background: var(--card-bg); border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 40px rgba(4, 120, 87, 0.15);
}

.card-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.play-overlay span {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.6);
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    opacity: 0.85;
    display: block;
}

.portfolio-card:hover .portfolio-video {
    transform: scale(1.05);
    opacity: 1;
}

.card-info {
    padding: 16px 20px;
}

.category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gradient-end);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.fullscreen-hint {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gradient-start);
    display: inline-block;
    margin-bottom: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card:hover .fullscreen-hint {
    opacity: 1;
    transform: translateX(4px);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, var(--card-border), transparent);
    width: 100%;
}

/* CTA Section */
.cta-section {
    padding: 40px 24px;
    display: flex;
    justify-content: center;
}

.cta-card {
    background: var(--card-bg); border: 1px solid var(--card-border); padding: 48px 36px; border-radius: 32px; text-align: center; max-width: 800px; width: 100%; backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.5);
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    text-align: center;
    padding: 24px;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Floating Space Text Animation */
@keyframes space-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(0.8deg);
    }
}

@keyframes space-float-alt {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(-0.6deg);
    }
}

.hero-title {
    animation: space-float 5s ease-in-out infinite;
}

.hero-subtitle {
    animation: space-float-alt 5.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.stat-number {
    animation: space-float 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.stat-label {
    animation: space-float-alt 5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.section-header h2 {
    animation: space-float 5.2s ease-in-out infinite;
    animation-delay: 0.2s;
}

.section-header p {
    animation: space-float-alt 5.8s ease-in-out infinite;
    animation-delay: 0.4s;
}

.game-title {
    animation: space-float 4.8s ease-in-out infinite;
    animation-delay: 0.6s;
}

.stat-val {
    animation: space-float-alt 4.2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.stat-key {
    animation: space-float 5.5s ease-in-out infinite;
    animation-delay: 0.7s;
}

.category {
    animation: space-float-alt 5s ease-in-out infinite;
    animation-delay: 0.2s;
}

.project-title {
    animation: space-float 4.6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hover-hint {
    animation: space-float-alt 5.3s ease-in-out infinite, pulse-hint 2s ease-in-out infinite;
    animation-delay: 0.4s;
}

.cta-card h2 {
    animation: space-float 5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.cta-card p {
    animation: space-float-alt 5.4s ease-in-out infinite;
    animation-delay: 0.6s;
}

.logo-text {
    animation: space-float 6s ease-in-out infinite;
}

footer p {
    animation: space-float-alt 5.5s ease-in-out infinite;
    animation-delay: 0.4s;
}

/* 3D Tilt Card Effect */
.tilt-card {
    perspective: 800px;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.tilt-card .tilt-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(52, 211, 153, 0.25) 0%,
        rgba(4, 120, 87, 0.12) 40%,
        transparent 70%
    );
    mix-blend-mode: screen;
}

.tilt-card:hover .tilt-glare {
    opacity: 1;
}

.tilt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid transparent;
    background: linear-gradient(
        var(--glare-angle, 135deg),
        rgba(52, 211, 153, 0.3) 0%,
        transparent 50%,
        rgba(4, 120, 87, 0.15) 100%
    ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.tilt-card:hover::after {
    opacity: 1;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98); /* Removed backdrop-filter to prevent video lag */
    animation: modal-fade-in 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    z-index: 1;
    animation: modal-scale-in 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.05);
}

.modal-video-player {
    width: 100%;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(52, 211, 153, 0.15);
    outline: none;
}

.modal-image-viewer {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(52, 211, 153, 0.15);
}

.ui-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.ui-card {
    width: 100%;
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    opacity: 1;
    display: block;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.ui-card .expand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.ui-card:hover .expand-overlay {
    opacity: 1;
}

.ui-card .expand-overlay span {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.8);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(6px);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-scale-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.portfolio-card {
    cursor: pointer;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
    margin-top: 40px;
}

.pricing-card {
    background: var(--card-bg); border: 1px solid var(--card-border); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 15px 35px rgba(4, 120, 87, 0.2);
}

.pricing-card.popular {
    border: 2px solid var(--gradient-success);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.15) 0%, var(--card-bg) 100%); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 40px rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.08); /* slight extra tilt effect */
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.pricing-card.popular .plan-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--gradient-success);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.pricing-price {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 4px;
}

.price-amount {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 8px;
    font-weight: 500;
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 32px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 1);
    color: var(--bg-primary);
}

.btn-pricing:hover {
    background: #e4e4e7;
    transform: translateY(-2px);
}

.btn-pricing-popular {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
}

.btn-pricing-popular:hover {
    background: linear-gradient(135deg, var(--gradient-success), var(--gradient-start));
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.feature-included {
    color: var(--text-primary);
}

.feature-excluded {
    color: var(--text-secondary);
    opacity: 0.6;
}

.check-icon, .cross-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.check-icon {
    background: var(--gradient-success);
    color: white;
}

.cross-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links a:not(.btn-primary) {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .stat-card {
        width: 100%;
    }

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

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

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: none;
    }

    .game-card {
        min-width: 260px;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
}

