diff --git a/static/css/styles.css b/static/css/styles.css index c4732b7..449095b 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -472,14 +472,16 @@ hr { .stats-card { text-align: center; padding: 32px; - background: rgba(26, 26, 26, 0.4); + background: rgba(26, 26, 26, 0.3); + backdrop-filter: blur(12px); + -webkit-backdrop-filter: blur(12px); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .stats-card:hover { - background: rgba(26, 26, 26, 0.6); + background: rgba(26, 26, 26, 0.5); transform: translateY(-4px); box-shadow: 0 12px 24px rgba(255, 255, 255, 0.05); } @@ -509,8 +511,8 @@ hr { font-weight: 500; border-radius: 12px; padding: 16px 32px; - background: rgba(26, 26, 26, 0.4); - border: 1px solid rgba(255, 255, 255, 0.08); + background: transparent; + border: 1.5px solid #3b82f6; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); margin: 32px auto; @@ -518,8 +520,8 @@ hr { } .stats-button:hover { - background: transparent; - border-color: #3b82f6; + background: #3b82f6; + color: var(--white); transform: translateY(-2px); box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); } @@ -595,16 +597,15 @@ hr { border-radius: 12px; color: var(--white); padding: 16px 32px; - background: rgba(26, 26, 26, 0.4); - border: 1px solid rgba(255, 255, 255, 0.08); + background: transparent; + border: 1.5px solid #3b82f6; z-index: 2; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .bottom-center-button:hover { - background: transparent; - border-color: #3b82f6; + background: #3b82f6; color: var(--white); transform: translateX(-50%) translateY(-2px); box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); @@ -742,8 +743,8 @@ hr { border-radius: 12px; color: var(--white); padding: 16px 32px; - background: rgba(26, 26, 26, 0.4); - border: 1px solid rgba(255, 255, 255, 0.08); + background: transparent; + border: 1.5px solid #3b82f6; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; @@ -751,8 +752,8 @@ hr { } .team-cta-button:hover { - background: transparent; - border-color: #3b82f6; + background: #3b82f6; + color: var(--white); transform: translateY(-2px); box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); } @@ -812,8 +813,8 @@ hr { font-family: var(--font-body); font-weight: 500; border-radius: 12px; - background: rgba(26, 26, 26, 0.4); - border: 1px solid rgba(255, 255, 255, 0.08); + background: transparent; + border: 1.5px solid #3b82f6; color: var(--white); display: block; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); @@ -821,8 +822,8 @@ hr { } #sponsors-more-button:hover { - background: transparent; - border-color: #3b82f6; + background: #3b82f6; + color: var(--white); transform: translateY(-2px); box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }