* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
      background: #0a0a0a;
      color: #ffffff;
      overflow-x: hidden;
      cursor: default;
    }

    html, body {
      height: 100%;
    }

    h1, h2, h3, h4 {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
    }

    /* Custom Cursor */
    .custom-cursor {
      width: 20px;
      height: 20px;
      border: 2px solid #ff0033;
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      transition: transform 0.15s ease, opacity 0.15s ease;
      opacity: 0;
    }

    .cursor-ripple {
      position: fixed;
      border: 2px solid #ff0033;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      animation: ripple 0.6s ease-out;
      opacity: 0;
    }

    @keyframes ripple {
      from {
        width: 20px;
        height: 20px;
        opacity: 1;
      }
      to {
        width: 80px;
        height: 80px;
        opacity: 0;
      }
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 0, 51, 0.2);
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #ff0033;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #ff0033;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: #ff0033;
    }

    .auth-btn {
      background: linear-gradient(135deg, #ff0033, #cc0029);
      color: white;
      border: none;
      padding: 0.7rem 1.5rem;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
    }

    .auth-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(255, 0, 51, 0.6);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #ff0033;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero Section */
    .hero {
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0f 100%);
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920') center/cover;
      opacity: 0.3;
      animation: zoomPulse 20s ease-in-out infinite;
    }

    @keyframes zoomPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 2rem;
      animation: slideUp 1s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: 4rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #ffffff, #ff0033);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      color: #cccccc;
    }

    .hero-cta {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary, .btn-secondary {
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: linear-gradient(135deg, #ff0033, #cc0029);
      color: white;
      box-shadow: 0 0 30px rgba(255, 0, 51, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 40px rgba(255, 0, 51, 0.7);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid #ff0033;
    }

    .btn-secondary:hover {
      background: rgba(255, 0, 51, 0.1);
      transform: translateY(-3px);
    }

    /* Section Styles */
    section {
      padding: 6rem 5%;
      position: relative;
    }

    .section-title {
      font-size: 3rem;
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(135deg, #ffffff, #ff0033);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* About Section */
    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .about-card {
      background: linear-gradient(135deg, rgba(255, 0, 51, 0.1), rgba(20, 20, 20, 0.8));
      padding: 3rem;
      border-radius: 20px;
      border: 1px solid rgba(255, 0, 51, 0.3);
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
    }

    .about-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .about-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(255, 0, 51, 0.3);
    }

    .about-card h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #ff0033;
    }

    .about-card p {
      color: #cccccc;
      line-height: 1.8;
    }

    /* Technology Section */
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .tech-card {
      background: rgba(20, 20, 20, 0.8);
      padding: 2.5rem;
      border-radius: 15px;
      border: 1px solid rgba(255, 0, 51, 0.2);
      transition: all 0.4s ease;
      text-align: center;
    }

    .tech-card:hover {
      transform: scale(1.05) rotate(2deg);
      border-color: #ff0033;
      box-shadow: 0 15px 35px rgba(255, 0, 51, 0.4);
    }

    .tech-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
    }

    .tech-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #ff0033;
    }

    /* Collections */
    .collections-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .collection-card {
      position: relative;
      height: 400px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .collection-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .collection-card:hover img {
      transform: scale(1.1);
    }

    .collection-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      padding: 2rem;
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .collection-card:hover .collection-overlay {
      transform: translateY(0);
    }

    .collection-card h3 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }

    .collection-card p {
      color: #cccccc;
    }

    /* Athletes Section */
    .athletes-slider {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      padding: 2rem 0;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: #ff0033 #1a1a1a;
    }

    .athletes-slider::-webkit-scrollbar {
      height: 8px;
    }

    .athletes-slider::-webkit-scrollbar-track {
      background: #1a1a1a;
    }

    .athletes-slider::-webkit-scrollbar-thumb {
      background: #ff0033;
      border-radius: 4px;
    }

    .athlete-card {
      min-width: 300px;
      height: 400px;
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .athlete-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .athlete-card:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 40px rgba(255, 0, 51, 0.4);
    }

    .athlete-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
      padding: 2rem;
    }

    .athlete-info h4 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .athlete-info p {
      color: #ff0033;
      font-weight: 600;
    }

    .athlete-quote {
      font-style: italic;
      color: #cccccc;
      margin-top: 0.5rem;
    }

    /* Blog Section */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .blog-card {
      background: rgba(20, 20, 20, 0.8);
      border-radius: 15px;
      overflow: hidden;
      border: 1px solid rgba(255, 0, 51, 0.2);
      transition: all 0.4s ease;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(255, 0, 51, 0.3);
    }

    .blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-content {
      padding: 2rem;
    }

    .blog-tag {
      display: inline-block;
      background: #ff0033;
      color: white;
      padding: 0.3rem 1rem;
      border-radius: 15px;
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }

    .blog-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .blog-card p {
      color: #cccccc;
      line-height: 1.6;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #ff0033, #cc0029);
      text-align: center;
      padding: 5rem 5%;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: moveGrid 20s linear infinite;
    }

    @keyframes moveGrid {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-section h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: white;
    }

    .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .subscribe-form {
      display: flex;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
    }

    .subscribe-form input {
      flex: 1;
      min-width: 250px;
      padding: 1rem 1.5rem;
      border: none;
      border-radius: 25px;
      font-size: 1rem;
      background: white;
      color: #0a0a0a;
    }

    .subscribe-form button {
      padding: 1rem 2rem;
      border: none;
      border-radius: 25px;
      background: #0a0a0a;
      color: white;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .subscribe-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .subscribe-message {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 10px;
      display: none;
    }

    .subscribe-message.success {
      background: rgba(0, 255, 0, 0.2);
      color: white;
      display: block;
    }

    .subscribe-message.error {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      display: block;
    }

    /* Footer */
    footer {
      background: #0a0a0a;
      padding: 4rem 5% 2rem;
      border-top: 1px solid rgba(255, 0, 51, 0.3);
      position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-column h4 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: #ff0033;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: #cccccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: #ff0033;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 0, 51, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ff0033;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: #ff0033;
      color: white;
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 0, 51, 0.2);
      color: #888888;
    }

    .footer-line {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, #ff0033, #cc0029, #ff0033);
      animation: slideFooter 3s linear infinite;
      width: 30%;
    }

    @keyframes slideFooter {
      0% { left: -30%; }
      100% { left: 100%; }
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
      padding: 3rem;
      border-radius: 20px;
      max-width: 450px;
      width: 90%;
      border: 2px solid #ff0033;
      position: relative;
      animation: modalSlide 0.4s ease-out;
    }

    @keyframes modalSlide {
      from {
        opacity: 0;
        transform: translateY(-50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: #ff0033;
      font-size: 2rem;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .modal-close:hover {
      transform: rotate(90deg);
    }

    .modal h2 {
      margin-bottom: 2rem;
      text-align: center;
      color: #ff0033;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: #cccccc;
      font-weight: 500;
    }

    .form-group input {
      width: 100%;
      padding: 1rem;
      border: 1px solid rgba(255, 0, 51, 0.3);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      color: white;
      font-size: 1rem;
    }

    .form-group input:focus {
      outline: none;
      border-color: #ff0033;
      box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
    }

    .modal-btn {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(135deg, #ff0033, #cc0029);
      border: none;
      border-radius: 10px;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .modal-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 0, 51, 0.4);
    }

    .modal-message {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 10px;
      text-align: center;
      display: none;
    }

    .modal-message.success {
      background: rgba(0, 255, 0, 0.2);
      color: #00ff00;
      display: block;
    }

    .modal-message.error {
      background: rgba(255, 0, 0, 0.2);
      color: #ff6666;
      display: block;
    }

    /* Content Pages */
    .content-page {
      display: none;
      padding: 8rem 5% 4rem;
      min-height: 100%;
    }

    .content-page.active {
      display: block;
    }

    .content-page h1 {
      font-size: 3rem;
      margin-bottom: 2rem;
      color: #ff0033;
    }

    .content-page h2 {
      font-size: 2rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: #ff0033;
    }

    .content-page p {
      line-height: 1.8;
      margin-bottom: 1.5rem;
      color: #cccccc;
    }

    .content-page ul {
      margin-left: 2rem;
      margin-bottom: 1.5rem;
    }

    .content-page li {
      margin-bottom: 0.8rem;
      color: #cccccc;
      line-height: 1.6;
    }

    .back-btn {
      display: inline-block;
      margin-bottom: 2rem;
      padding: 0.8rem 2rem;
      background: rgba(255, 0, 51, 0.2);
      color: #ff0033;
      text-decoration: none;
      border-radius: 25px;
      transition: all 0.3s ease;
      border: 1px solid #ff0033;
    }

    .back-btn:hover {
      background: #ff0033;
      color: white;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 70%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 0, 51, 0.3);
      }

      .nav-links.active {
        right: 0;
      }

      .hamburger {
        display: flex;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .about-grid, .tech-grid, .collections-grid, .blog-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-section h2 {
        font-size: 2rem;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .subscribe-form input {
        min-width: 100%;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 1rem 5%;
      }

      .logo {
        font-size: 1.5rem;
      }

      .hero h1 {
        font-size: 2rem;
      }

      section {
        padding: 4rem 5%;
      }

      .modal-content {
        padding: 2rem;
      }
    }
