 .discord-bg {
     background-color: #5865F2;
 }

 .discord-card {
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .discord-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(88, 101, 242, 0.3);
 }

 .discord-icon {
     font-size: 3rem;
     color: #5865F2;
 }

 .discord-btn {
     background-color: #5865F2;
     border-color: #5865F2;
     border-radius: 8px;
     font-weight: 600;
     padding: 0.75rem 2rem;
     transition: all 0.3s ease;
 }

 .discord-btn:hover {
     background-color: #4752c4;
     border-color: #4752c4;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
 }

 .community-card {
     border: none;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     height: 100%;
     transition: transform 0.3s ease;
 }

 .community-card:hover {
     transform: translateY(-5px);
 }

 .community-icon {
     width: 60px;
     height: 60px;
     background-color: rgba(88, 101, 242, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     color: #5865F2;
     font-size: 1.5rem;
 }
