top of page
Website_Header_For_202603241345.png

Welcome To Another Kind Of Fashion

TRIPPY GAME COLLECTION is a Premium urban streetwear for those who don't follow trends—They create them. Express your authentic self with pieces that speak volumes.

Explore our collection

 
bottom of page
/* Load Google Fonts */ @import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap'); /* Design System Variables */ :root { /* Typography */ --font-heading: 'Space Grotesk', sans-serif; --font-body: 'DM Sans', sans-serif; --font-display: 'Archivo Black', sans-serif; /* Colors - 2026 Palette */ --color-bg: #0a0a0a; --color-card: #141414; --color-primary: #ff3d00; --color-secondary: #00ff88; --color-tertiary: #7b2cbf; --color-text: #ffffff; --color-text-muted: #a0a0a0; /* Gradients */ --gradient-primary: linear-gradient(135deg, #ff3d00, #ff6b00); --gradient-aurora: radial-gradient(ellipse at 20% 20%, rgba(123, 44, 191, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(255, 61, 0, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%), #0a0a0a; /* Easing */ --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1); --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55); } /* Base Typography */ body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--color-text); background: var(--color-bg); } h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; } /* ============================================================================ SECTION 2: 3D CSS EFFECTS ============================================================================ */ /* 3D Card Flip */ .threed-card-2026 { perspective: 1000px; transform-style: preserve-3d; } .threed-card-2026-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s var(--ease-smooth); transform-style: preserve-3d; } .threed-card-2026:hover .threed-card-2026-inner { transform: rotateY(180deg); } .threed-card-2026-front, .threed-card-2026-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 20px; overflow: hidden; } .threed-card-2026-back { transform: rotateY(180deg); } /* 3D Floating Animation */ .threed-float-2026 { animation: float3d 6s ease-in-out infinite; transform-style: preserve-3d; } @keyframes float3d { 0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); } 25% { transform: translateY(-20px) rotateX(5deg) rotateY(5deg); } 50% { transform: translateY(-10px) rotateX(-5deg) rotateY(-5deg); } 75% { transform: translateY(-30px) rotateX(3deg) rotateY(-3deg); } } /* 3D Depth Layers */ .threed-depth-2026 { position: relative; transform-style: preserve-3d; } .threed-depth-2026::before, .threed-depth-2026::after { content: ''; position: absolute; inset: 0; border-radius: inherit; transition: transform 0.4s var(--ease-smooth); pointer-events: none; z-index: -1; } .threed-depth-2026::before { transform: translateZ(-10px); background: rgba(255, 61, 0, 0.3); filter: blur(20px); } .threed-depth-2026::after { transform: translateZ(-20px); background: rgba(123, 44, 191, 0.2); filter: blur(30px); } .threed-depth-2026:hover::before { transform: translateZ(-15px) scale(1.1); } .threed-depth-2026:hover::after { transform: translateZ(-25px) scale(1.15); } /* ============================================================================ SECTION 3: GLASSMORPHISM ============================================================================ */ .glass-card-2026 { background: rgba(20, 20, 20, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); } .glass-button-2026 { background: rgba(255, 61, 0, 0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 61, 0, 0.3); border-radius: 12px; padding: 12px 24px; color: white; font-weight: 600; cursor: pointer; transition: all 0.3s var(--ease-smooth); } .glass-button-2026:hover { background: rgba(255, 61, 0, 0.4); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 61, 0, 0.3); } /* ============================================================================ SECTION 4: NEUMORPHISM (Soft UI 2.0) ============================================================================ */ .neu-card-2026 { background: #1a1a1a; border-radius: 24px; box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4), -8px -8px 16px rgba(255, 255, 255, 0.05); transition: all 0.3s var(--ease-smooth); } .neu-card-2026:hover { box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.5), -12px -12px 24px rgba(255, 255, 255, 0.08); transform: translateY(-2px); } .neu-button-2026 { background: #1a1a1a; border: none; border-radius: 16px; padding: 16px 32px; color: #ffffff; font-family: var(--font-heading); font-weight: 600; font-size: 16px; cursor: pointer; box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.05); transition: all 0.2s var(--ease-smooth); }