Changed around line 1
+ :root {
+ --primary: #2a1b3d;
+ --secondary: #44318d;
+ --accent: #e98074;
+ --text: #ffffff;
+ --background: #1a1a2e;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ background: rgba(42, 27, 61, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--accent), #f2d388);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ color: var(--text);
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent);
+ }
+
+ .login-btn {
+ background: var(--accent);
+ color: var(--primary);
+ border: none;
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+
+ .login-btn:hover {
+ transform: translateY(-2px);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ text-align: center;
+ z-index: 2;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease-out;
+ }
+
+ .hero p {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ animation: fadeInUp 1s ease-out 0.3s backwards;
+ }
+
+ .cta-btn {
+ background: linear-gradient(45deg, var(--accent), #f2d388);
+ border: none;
+ padding: 1rem 3rem;
+ border-radius: 30px;
+ font-size: 1.2rem;
+ cursor: pointer;
+ transition: transform 0.3s;
+ animation: fadeInUp 1s ease-out 0.6s backwards;
+ }
+
+ .cta-btn:hover {
+ transform: translateY(-3px);
+ }
+
+ /* Floating Cards Animation */
+ .floating-cards {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ }
+
+ .card {
+ position: absolute;
+ width: 100px;
+ height: 140px;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 10px;
+ animation: float 15s infinite linear;
+ }
+
+ .card.spade { top: 20%; left: 20%; animation-delay: 0s; }
+ .card.heart { top: 60%; left: 70%; animation-delay: -3s; }
+ .card.diamond { top: 30%; left: 80%; animation-delay: -6s; }
+ .card.club { top: 70%; left: 30%; animation-delay: -9s; }
+
+ /* Game Modes */
+ .game-modes {
+ padding: 5rem 5%;
+ background: var(--primary);
+ }
+
+ .mode-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .mode-card {
+ background: rgba(255, 255, 255, 0.05);
+ padding: 2rem;
+ border-radius: 15px;
+ transition: transform 0.3s;
+ }
+
+ .mode-card:hover {
+ transform: translateY(-10px);
+ }
+
+ /* Animations */
+ @keyframes float {
+ 0% { transform: rotate(0deg) translate(0, 0); }
+ 50% { transform: rotate(180deg) translate(100px, 100px); }
+ 100% { transform: rotate(360deg) translate(0, 0); }
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ /* Mobile Responsiveness */
+ .mobile-menu {
+ display: none;
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .nav-links.active {
+ display: flex;
+ flex-direction: column;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--primary);
+ padding: 1rem;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }