/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0A0A0A;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    color: #E0E0E0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
header {
    background-color: #121212;
    border-bottom: 2px solid #00C853;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.2);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 200, 83, 0.5));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
}

nav a:hover {
    color: #00C853;
    background-color: rgba(0, 200, 83, 0.1);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.3);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00C853, #00E676);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 80%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: #00C853;
    border-radius: 3px;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(0, 200, 83, 0.5);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #121212 0%, #0A0A0A 100%);
        border-left: 2px solid #00C853;
        padding: 80px 30px 30px;
        transition: right 0.3s;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 200, 83, 0.3);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        margin-bottom: 15px;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 20px;
        border-radius: 8px;
        border: 1px solid #2A2A2A;
        background: rgba(0, 200, 83, 0.05);
    }
    
    .main-nav a:hover {
        background: rgba(0, 200, 83, 0.15);
        border-color: #00C853;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
    background: linear-gradient(135deg, #FFFFFF 0%, #00C853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 18px;
    color: #B0B0B0;
    margin-bottom: 30px;
}

.hero-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #D0D0D0;
}

.hero-intro ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.hero-intro li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.hero-intro li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00C853;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.8);
}

.hero-intro p {
    color: #C0C0C0;
}

/* Filter Bar */
.filters {
    background-color: #121212;
    padding: 20px;
    border-bottom: 1px solid #00C853;
    border-top: 1px solid #00C853;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.filter-item {
    padding: 10px 20px;
    background-color: #1A1A1A;
    border: 2px solid #2A2A2A;
    border-radius: 6px;
    color: #E0E0E0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.2), transparent);
    transition: left 0.5s;
}

.filter-item:hover::before {
    left: 100%;
}

.filter-item:hover {
    background-color: #1F1F1F;
    border-color: #00C853;
    color: #00C853;
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.3);
    transform: translateY(-2px);
}

.filter-item.active {
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: #000000;
    border-color: #00C853;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
    font-weight: 600;
}

.brand-card.hidden {
    display: none;
}

/* Betting Brands Section */
.brands-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.brand-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
    border: 2px solid #2A2A2A;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00C853, #00E676, #00C853);
    transform: scaleX(0);
    transition: transform 0.4s;
    pointer-events: none;
    z-index: 1;
}

.brand-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card:hover::after {
    opacity: 1;
}

.brand-card:hover {
    border-color: #00C853;
    box-shadow: 
        0 12px 40px rgba(0, 200, 83, 0.4),
        0 0 0 1px rgba(0, 200, 83, 0.3),
        inset 0 0 30px rgba(0, 200, 83, 0.05);
    transform: translateY(-8px) scale(1.01);
    background: linear-gradient(135deg, #1F1F1F 0%, #151515 100%);
}

.brand-logo-wrapper {
    flex-shrink: 0;
    width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #2A2A2A;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.brand-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.brand-card:hover .brand-logo-wrapper::before {
    opacity: 1;
}

.brand-logo {
    width: 190px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s;
    filter: brightness(0.9);
    display: block;
}

.brand-card:hover .brand-logo-wrapper {
    border-color: #00C853;
    box-shadow: 
        0 0 20px rgba(0, 200, 83, 0.4),
        inset 0 0 20px rgba(0, 200, 83, 0.1);
    transform: scale(1.05);
}

.brand-card:hover .brand-logo {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.brand-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2A2A2A;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, #00C853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.score {
    font-size: 36px;
    font-weight: 700;
    color: #00C853;
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.8);
    line-height: 1;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    letter-spacing: 2px;
}

.score-label {
    font-size: 13px;
    color: #A0A0A0;
    font-weight: 500;
}

.brand-content {
    flex: 1;
}

.brand-bonus {
    font-size: 19px;
    color: #E0E0E0;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.brand-bonus strong {
    color: #00C853;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

.brand-terms {
    font-size: 13px;
    color: #B0B0B0;
    line-height: 1.7;
    margin: 0;
}

.brand-button-wrapper {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #2A2A2A;
}

.brand-button {
    padding: 16px 40px;
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(0, 200, 83, 0.5),
        0 0 0 0 rgba(0, 200, 83, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.brand-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.brand-button::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.brand-button:hover::before {
    width: 400px;
    height: 400px;
}

.brand-button:hover::after {
    opacity: 1;
    right: 15px;
}

.brand-button:hover {
    background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    box-shadow: 
        0 10px 30px rgba(0, 200, 83, 0.7),
        0 0 0 4px rgba(0, 200, 83, 0.2);
    transform: translateY(-3px) scale(1.05);
    padding-right: 50px;
}

.brand-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Info Section */
.info-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-box {
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #00C853;
    border: 2px solid #2A2A2A;
    border-left: 4px solid #00C853;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.1);
}

.info-section h2 {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
}

.info-section h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin: 30px 0 15px;
    font-weight: 600;
    border-bottom: 2px solid #00C853;
    padding-bottom: 10px;
    display: inline-block;
}

.info-section p {
    font-size: 16px;
    color: #D0D0D0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.info-section li {
    font-size: 16px;
    color: #D0D0D0;
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.info-section li::marker {
    color: #00C853;
}

.info-section li strong {
    color: #00C853;
}

.info-section a {
    color: #00C853;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.info-section a:hover {
    color: #00E676;
    border-bottom-color: #00E676;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

.info-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #2A2A2A;
}

/* Banner Section */
.banner {
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: #000000;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
    border: 2px solid #00E676;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.banner p {
    font-size: 18px;
    margin: 0;
    color: #000000;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    color: #CCCCCC;
    padding: 60px 20px 30px;
    margin-top: 80px;
    border-top: 2px solid #00C853;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #00C853;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: #00C853;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

.footer-bottom {
    border-top: 1px solid #2A2A2A;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #999999;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 40px;
    opacity: 0.7;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.footer-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brand-card {
        gap: 25px;
        padding: 30px;
    }
    
    .brand-logo-wrapper {
        width: 180px;
        height: 90px;
    }
    
    .brand-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .subtitle {
        font-size: 16px;
    }
    
    .brand-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .brand-logo-wrapper {
        width: 100%;
        max-width: 250px;
        height: 100px;
        margin: 0 auto;
    }
    
    .brand-header {
        text-align: center;
        align-items: center;
    }
    
    .brand-rating {
        justify-content: center;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .score {
        font-size: 32px;
    }
    
    .brand-bonus {
        font-size: 17px;
    }
    
    .brand-terms {
        font-size: 12px;
    }
    
    .brand-button {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }
    
    .filter-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .filter-item {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .info-section h2 {
        font-size: 26px;
    }
    
    .info-section h3 {
        font-size: 20px;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .brand-card {
        padding: 20px 15px;
    }
    
    .brand-name {
        font-size: 22px;
    }
    
    .score {
        font-size: 28px;
    }
    
    .brand-bonus {
        font-size: 16px;
    }
    
    .info-section {
        padding: 0 15px;
    }
    
    .info-section h2 {
        font-size: 22px;
    }
    
    .info-section h3 {
        font-size: 18px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-button {
        width: 100%;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
    border-top: 3px solid #00C853;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 200, 83, 0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: #E0E0E0;
}

.cookie-text a {
    color: #00C853;
    text-decoration: none;
}

.cookie-text a:hover {
    color: #00E676;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.cookie-accept:hover {
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
    transform: translateY(-2px);
}

.cookie-decline {
    background-color: #2A2A2A;
    color: #E0E0E0;
    border: 1px solid #3A3A3A;
}

.cookie-decline:hover {
    background-color: #3A3A3A;
    border-color: #DC3545;
    color: #DC3545;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    border: 2px solid #00C853;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.4);
}

.age-modal h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
}

.age-modal p {
    font-size: 16px;
    color: #D0D0D0;
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-button {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.age-confirm {
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.age-confirm:hover {
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
    transform: translateY(-2px);
}

.age-decline {
    background: linear-gradient(135deg, #DC3545 0%, #C82333 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.age-decline:hover {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
    transform: translateY(-2px);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00C853 0%, #00E676 100%);
    border-radius: 6px;
    border: 2px solid #0A0A0A;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00E676 0%, #00C853 100%);
}

/* Selection Styling */
::selection {
    background-color: #00C853;
    color: #000000;
}

::-moz-selection {
    background-color: #00C853;
    color: #000000;
}
