:root {
    --color-dark: #0d0000;
    --color-dark-red: #300000;
    --color-red: #8B0000;
    --color-bright-red: #B22222;
    --color-light-red: #ff4d4d;
    --color-gold: #FFD700;
    --color-light: #f8f8f8;
    --color-gray: #aaaaaa;
    
    --font-title: 'Bebas Neue', sans-serif;
    --font-text: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-red: 0 5px 20px rgba(178, 34, 34, 0.4);
    --shadow-gold: 0 5px 20px rgba(255, 215, 0, 0.4);
    
    --max-width: 1200px;
    --header-height: 80px;
    --section-padding: 100px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-dark);
    color: var(--color-light);
    font-family: var(--font-text);
    overflow-x: hidden;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px var(--color-bright-red); }
    50% { box-shadow: 0 0 20px var(--color-bright-red); }
    100% { box-shadow: 0 0 10px var(--color-bright-red); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(178, 34, 34, 0.1) 0%, transparent 30%);
    z-index: -2;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(13, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(178, 34, 34, 0.3);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small .logo-part-1 {
    color: var(--color-gold);
    font-family: var(--font-title);
    font-size: 28px;
    letter-spacing: 1px;
}

.logo-small .logo-part-2 {
    color: var(--color-light);
    font-family: var(--font-title);
    font-size: 28px;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--color-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-gold);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-red), var(--color-bright-red));
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-outline {
    background: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-bright-red);
}

.btn-join {
    background: linear-gradient(45deg, var(--color-red), var(--color-bright-red));
    color: white;
    box-shadow: var(--shadow-red);
    animation: glow 2s infinite;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    animation: glow 1.5s infinite;
}

.btn-outline:hover {
    background: rgba(178, 34, 34, 0.2);
}

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logo-main {
    width: 400px;
    height: 400px;
    background: url('https://via.placeholder.com/400x400/8B0000/FFFFFF?text=REDEMPTION+RP') no-repeat center;
    background-size: contain;
    position: relative;
    z-index: 10;
    animation: fadeIn 1.5s ease-out, pulse 4s infinite, float 6s ease-in-out infinite;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 20px rgba(178, 34, 34, 0.7));
}

.logo-main:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

.logo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
}

.circle-1 {
    width: 450px;
    height: 450px;
    border: 2px solid var(--color-bright-red);
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 500px;
    height: 500px;
    border: 2px solid var(--color-gold);
    animation: rotate 25s linear infinite reverse;
}

.circle-3 {
    width: 600px;
    height: 600px;
    border: 2px dashed rgba(255, 215, 0, 0.3);
    animation: rotate 30s linear infinite;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-light);
    opacity: 0.7;
    font-size: 14px;
    animation: fadeIn 2s ease-out, bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--color-light);
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-light);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes scroll {
    0% { top: 5px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

.section {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.dark-section {
    background: rgba(48, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(178, 34, 34, 0.2);
    border-bottom: 1px solid rgba(178, 34, 34, 0.2);
}

.section-title {
    font-family: var(--font-title);
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: var(--color-light);
    letter-spacing: 2px;
}

.section-title .highlight {
    color: var(--color-gold);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-red), var(--color-gold));
    border-radius: 3px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.text-gold {
    color: var(--color-gold);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: linear-gradient(to bottom right, rgba(48, 0, 0, 0.7), rgba(13, 0, 0, 0.9));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    border: 1px solid rgba(178, 34, 34, 0.3);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-bright-red);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(178, 34, 34, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover::before {
    transform: translateX(100%);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(13, 0, 0, 0.8));
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: var(--font-title);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.staff-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.staff-card {
    background: linear-gradient(to bottom right, rgba(48, 0, 0, 0.7), rgba(13, 0, 0, 0.9));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(178, 34, 34, 0.3);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(178, 34, 34, 0.4);
    border-color: var(--color-bright-red);
}

.staff-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--color-bright-red);
    object-fit: cover;
    transition: all 0.3s ease;
}

.staff-card:hover .staff-img {
    transform: scale(1.1);
    border-color: var(--color-gold);
}

.staff-name {
    font-family: var(--font-title);
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.staff-role {
    color: var(--color-light-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.staff-desc {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.staff-online {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 128, 0, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: lime;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(48, 0, 0, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(178, 34, 34, 0.2);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 24px;
    color: var(--color-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 34, 34, 0.2);
    color: var(--color-light);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-bright-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.footer {
    background: linear-gradient(to right, var(--color-dark), var(--color-dark-red), var(--color-dark));
    padding: 50px 20px;
    border-top: 1px solid var(--color-bright-red);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-part-1 {
    color: var(--color-gold);
    font-family: var(--font-title);
    font-size: 32px;
    letter-spacing: 2px;
}

.footer-logo .logo-part-2 {
    color: var(--color-light);
    font-family: var(--font-title);
    font-size: 32px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-copy {
    font-size: 14px;
    color: var(--color-gray);
    opacity: 0.7;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        padding: 10px 20px;
        height: auto;
    }
    
    .main-nav {
        margin: 15px 0;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-main {
        width: 300px;
        height: 300px;
    }
    
    .circle-1, .circle-2, .circle-3 {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .logo-main {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .main-nav ul {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .logo-main {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}.circle-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.circle-text {
  text-align: center;
}

.circle-logo-part-1 {
  color: #FFD700;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  display: block;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.circle-logo-part-2 {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  display: block;
  line-height: 1;
  letter-spacing: 3px;
  margin-top: 5px;
}.static-circle {
  animation: none !important;
  transform: none !important;
}

.circle-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.circle-text {
  text-align: center;
  transform: none !important;
}

.circle-logo-part-1 {
  color: #FFD700;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  display: block;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.circle-logo-part-2 {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  display: block;
  line-height: 1;
  letter-spacing: 3px;
  margin-top: 5px;
}.static-logo-container {
  animation: none !important;
  transform: none !important;
  border: 2px solid #a12404fb; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-logo-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-logo-image {
  width: 90%; 
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.circle-logo-text {
  text-align: center;
}

.circle-logo-part-1 {
  color: #FFD700;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  display: block;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.circle-logo-part-2 {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  display: block;
  line-height: 1;
  letter-spacing: 3px;
}.btn-container {
    display: inline-block;
    margin: 10px 0;
  }
  
  .btn.btn-primary {
    padding: 12px 30px;
    background: linear-gradient(45deg, #8B0000, #B22222);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(178, 34, 34, 0.4);
  }
  
  .legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.legal-content {
    background: rgba(13, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #B22222;
}

.legal-content h2 {
    color: #FFD700;
    margin: 25px 0 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.last-update {
    text-align: right;
    margin-top: 30px;
    font-style: italic;
    color: #aaa;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px dashed #B22222;
    padding-bottom: 20px;
}

.faq-question {
    color: white;
    cursor: pointer;
    padding: 15px;
    background: rgba(48, 0, 0, 0.5);
    border-radius: 5px;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(178, 34, 34, 0.3);
}

.faq-question i {
    color: #FFD700;
    margin-right: 10px;
}

.faq-answer {
    padding: 15px;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
