body {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .review-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .review-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 2rem;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
  }
  
  .review-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .review-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .review-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .star {
    color: gold;
    margin-right: 2px;
  }
  
  .review-quote {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
    font-style: italic;
    animation: quoteGlow 3s infinite alternate;
    width: 100%;
  }@keyframes quoteGlow {
    0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
  }
  
  /* Card Flip Animation from Home Page */
  .site-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    width: 100%;
    max-width: 320px;
  }
  
  .site-card {
    perspective: 1000px;
    height: 320px;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .site-card:hover {
    transform: translateY(-5px);
  }
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    margin: 0 auto;
  }
  
  .site-card:hover .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
  }
  
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    transform: rotateY(180deg);
  }
  
  .card-front::before, .card-back::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(52, 152, 219, 0.1), transparent 30%);
    animation: cardRotate 10s linear infinite;
  }
  
  @keyframes cardRotate {
    100% { transform: rotate(1turn); }
  }
  
  .card-back {
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .site-name {
    background: linear-gradient(to right, #ffffff, #a3c2d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }
  
  .affiliate-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.6));
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .affiliate-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(52, 152, 219, 0.7));
  }
  
  .site-logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    padding: 5px;
  }
  
  /* Site-specific logo styles */
  .stake-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #00ccff;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
  }
  
  .stake-bg .logo-text {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 18px;
    z-index: 2;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
    color: #00ccff;
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.7);
    animation: stakeGlow 4s ease-in-out infinite;
  }
  
  @keyframes stakeGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 204, 255, 0.8); }
    50% { text-shadow: 0 0 15px rgba(0, 204, 255, 1), 0 0 25px rgba(0, 204, 255, 0.5); }
  }
  
  .gamdom-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #27ae60;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.5);
  }
  
  .gamdom-bg .logo-text {
    color: #27ae60;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(39, 174, 96, 0.7);
    animation: gamdomGlow 4s ease-in-out infinite;
    font-size: 20px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes gamdomGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(39, 174, 96, 0.8); }
    50% { text-shadow: 0 0 15px rgba(39, 174, 96, 1), 0 0 25px rgba(39, 174, 96, 0.5); }
  }
  
  .csgo500-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
  }
  
  .csgo500-bg .logo-text {
    color: #ff3333;
    font-weight: bold;
    letter-spacing: 0px;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.7);
    font-size: 18px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
    animation: glowText 5s ease-in-out infinite;
  }
  
  @keyframes glowText {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 51, 51, 0.8); }
    50% { text-shadow: 0 0 15px rgba(255, 51, 51, 1), 0 0 25px rgba(255, 51, 51, 0.5); }
  }
  
  .empire-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #f39c12;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
  }
  
  .empire-bg .logo-text {
    color: #f39c12;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(243, 156, 18, 0.7);
    animation: empireGlow 4s ease-in-out infinite;
    font-size: 18px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes empireGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(243, 156, 18, 0.8); }
    50% { text-shadow: 0 0 15px rgba(243, 156, 18, 1), 0 0 25px rgba(243, 156, 18, 0.5); }
  }
  
  .clash-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }
  
  .clash-bg .logo-text {
    color: #ffd700;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
    animation: clashGlow 4s ease-in-out infinite;
    font-size: 20px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes clashGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 215, 0, 0.8); }
    50% { text-shadow: 0 0 15px rgba(255, 215, 0, 1), 0 0 25px rgba(255, 215, 0, 0.5); }
  }
  
  .rainbet-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #0088cc;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
  }
  
  .rainbet-bg .logo-text {
    color: #0088cc;
    font-weight: bold;
    letter-spacing: 0px;
    text-shadow: 0 0 5px rgba(0, 136, 204, 0.7);
    animation: rainbetGlow 4s ease-in-out infinite;
    font-size: 20px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes rainbetGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 136, 204, 0.8); }
    50% { text-shadow: 0 0 15px rgba(0, 136, 204, 1), 0 0 25px rgba(0, 136, 204, 0.5); }
  }
  
  .rain-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #3498db;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
  }
  
  .rain-bg .logo-text {
    color: #3498db;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.7);
    animation: rainGlow 4s ease-in-out infinite;
    font-size: 20px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes rainGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(52, 152, 219, 0.8); }
    50% { text-shadow: 0 0 15px rgba(52, 152, 219, 1), 0 0 25px rgba(52, 152, 219, 0.5); }
  }
  
  .skinfans-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #ff6b6b;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
  }
  
  .skinfans-bg .logo-text {
    color: #ff6b6b;
    font-weight: bold;
    letter-spacing: 0px;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.7);
    animation: skinfansGlow 4s ease-in-out infinite;
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes skinfansGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 107, 107, 0.8); }
    50% { text-shadow: 0 0 15px rgba(255, 107, 107, 1), 0 0 25px rgba(255, 107, 107, 0.5); }
  }
  
  .csgoroll-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #27ae60;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.5);
  }
  
  .csgoroll-bg .logo-text {
    color: #27ae60;
    font-weight: bold;
    letter-spacing: 0px;
    text-shadow: 0 0 5px rgba(39, 174, 96, 0.7);
    animation: csgorollGlow 4s ease-in-out infinite;
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes csgorollGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(39, 174, 96, 0.8); }
    50% { text-shadow: 0 0 15px rgba(39, 174, 96, 1), 0 0 25px rgba(39, 174, 96, 0.5); }
  }
  
  .packdraw-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #ff9900;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.5);
  }
  
  .packdraw-bg .logo-text {
    color: #ff9900;
    font-weight: bold;
    letter-spacing: 0px;
    text-shadow: 0 0 5px rgba(255, 153, 0, 0.7);
    animation: packdrawGlow 4s ease-in-out infinite;
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes packdrawGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 153, 0, 0.8); }
    50% { text-shadow: 0 0 15px rgba(255, 153, 0, 1), 0 0 25px rgba(255, 153, 0, 0.5); }
  }
  
  .plg-bg {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid #9b59b6;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.5);
  }
  
  .plg-bg .logo-text {
    color: #9b59b6;
    font-weight: bold;
    letter-spacing: 0px;
    text-shadow: 0 0 5px rgba(155, 89, 182, 0.7);
    animation: plgGlow 4s ease-in-out infinite;
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100%;
  }
  
  @keyframes plgGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(155, 89, 182, 0.8); }
    50% { text-shadow: 0 0 15px rgba(155, 89, 182, 1), 0 0 25px rgba(155, 89, 182, 0.5); }
  }
  
  .site-card-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
  }
  
  .pros-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    width: 100%;
  }
  
  .pros, .cons {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border-radius: 8px;
  }
  
  .pros {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
  }
  
  .cons {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
  }
  
  .review-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: titlePulse 3s infinite alternate;
  }
  
  @keyframes titlePulse {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.7); }
  }
  
  .animated-heading {
    position: relative;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: headingGlow 3s infinite alternate;
  }
  
  @keyframes headingGlow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
  }
  
  .user-review {
    animation: fadeIn 0.5s ease-in;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .back-to-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .back-to-home:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transform: translateY(-2px);
  }