body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d1a0d;
    color: #fff;
}

header {
    background: #00ff99;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: #0d1a0d;
}

nav a {
    text-decoration: none;
    color: #0d1a0d;
    font-weight: bold;
    margin-left: 20px;
}

nav a:hover {
    text-decoration: underline;
}

.main-content {
    text-align: center;
    padding: 80px 20px;
}

.contact-form input, .contact-form textarea {
    width: 300px;
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #00ff99;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #00cc77;
}

body {
    background: linear-gradient(135deg, #0d1a0d, #1a3320);
}

header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

h2, h3 {
    color: #00ff99;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.info-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.info-card {
    background: #1f2b1f;
    border: 1px solid #00ff99;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 250px;
    box-shadow: 0 0 10px rgba(0,255,153,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,255,153,0.7);
}

.info-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #00ff99;
}

.info-card a {
    color: #00ff99;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.mod-list {
    columns: 2;
    list-style-type: none;
    padding: 0;
}

.mod-list li {
    background: #2a3b2a;
    margin: 5px;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mod-list li:hover {
    background: #00ff99;
    color: #0d1a0d;
    font-weight: bold;
}

@media (max-width: 700px) {
    .mod-list {
        columns: 1;
    }
}

.copy-btn {
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 14px;
    background: #00ff99;
    color: #0d1a0d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: #00cc77;
}

.copy-msg {
    margin-left: 10px;
    font-size: 14px;
    color: #00ff99;
    display: none;
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #00ff99;
    border-radius: 5px;
    background: #2a3b2a;
    color: #fff;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ff99;
    box-shadow: 0 0 8px rgba(0,255,153,0.6);
}

.contact-form button {
    padding: 10px 20px;
    background-color: #00ff99;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease;
}

.contact-form button:hover {
    background-color: #00cc77;
}

header {
    background: #00ff99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    color: #0d1a0d;
    font-size: 24px;
    margin: 0;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #0d1a0d;
    font-weight: bold;
    position: relative;
    transition: color 0.2s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #0d1a0d;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #0d1a0d;
}

@media (max-width: 700px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
}

.info-card .shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00ff99;
    color: #0d1a0d !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s ease;
}

.info-card .shop-btn:hover {
    background: #00cc77;
}

.info-card em {
    color: #ccc;
    font-size: 14px;
}

.hero {
    background: linear-gradient(135deg, #0d1a0d, #1a3320);
    text-align: center;
    padding: 100px 20px;
    color: #fff;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #00ff99;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn {
    padding: 12px 24px;
    background: #00ff99;
    color: #0d1a0d;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s ease;
}

.hero-btn:hover {
    background: #00cc77;
}

.rrd-pfp {
    display: block;
    margin: 20px auto;
    width: 120px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,255,153,0.5);
}