/* Allgemeine Styles für Buttons */
.btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    color: #fff;
}

/* Pseudo-Element für Animation */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Hover-Effekt */
.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
    width: 400%;
    height: 400%;
    top: -25%;
    left: -25%;
}

/* Spezifische Button-Stile */
.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #003d7a;
}

.btn-success {
    background-color: #28a745;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-secondary {
    background-color: #343a40;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #0056b3;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #c82333;
}

.settings-card {
    background-color: #28282B;
}

/* Karten */
.card, .partner-card, .feature-card, .settings-card, .staking-card {
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover, .partner-card:hover, .feature-card:hover, .settings-card:hover, .staking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partner-card {
    max-width: 150px;
    text-align: center;
}

.feature-card {
    max-width: 200px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 10px;
    background-color: #f9f9f9;
}

.settings-card, .staking-card {
    padding: 2rem;
    margin: 1rem;
}

.staking-card img {
    border-bottom: 1px solid #f1f1f1;
}

/* Form Controls */
.form-control {
    border-radius: 0.3rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(74, 163, 223, 0.25);
    border-color: #4aa3df;
}

/* Navbar */
.navbar {
    padding: 1rem 2rem;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.navbar .navbar-brand, .navbar .nav-link {
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar .navbar-brand:hover, .navbar .nav-link:hover {
    color: #4aa3df;
    transform: translateY(-2px);
}

.navbar-light {
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar-dark {
    background-color: #343a40;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tabellen */
.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table th {
    background-color: #f8f9fa;
    color: black;
    font-weight: bold;
}

.table td, .table th {
    vertical-align: middle;
    text-align: center;
}

.table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Modal */
.modal-content {
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal-header, .modal-body, .modal-footer {
    padding: 1.5rem;
}

.modal-header, .modal-footer {
    border: none;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Alerts */
.alert {
    border-radius: 1rem;
    font-size: 1.125rem;
}

/* Textfarben */
.text-primary-custom { color: #0056b3; }
.text-success-custom { color: #28a745; }
.text-danger-custom { color: #dc3545; }
.text-warning-custom { color: #ffc107; }
.text-info-custom { color: #17a2b8; }
.text-purple-custom { color: #6f42c1; }
.text-dark-custom { color: #343a40; }

/* Tooltips */
.tooltip-inner {
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 0.3rem;
}

/* Animationen */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.5s ease-in-out; }

/* Partner-Sektion */
.partners-section {
    padding: 20px;
}

.partner-card {
    max-width: 150px;
    text-align: center;
}

.partner-img {
    width: 100%;
    max-width: 100px;
    height: auto;
}

/* Features-Karten */
.feature-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    line-height: 1.4rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .partner-card {
        max-width: 120px;
        margin-bottom: 20px;
    }

    .partner-img {
        max-width: 80px;
    }

    .feature-card {
        max-width: 100%;
        height: auto;
    }
}

/* Hero Section */
.hero-section {
    color: white;
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0056b3, #28a745);
}

.level-card {
    color: white;
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0056b3, #28a745);
}

.text-stroke-black {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section .highlight {
    color: #0056b3;
}

.hero-section p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-section .btn-group {
    margin-top: 2rem;
}

/* Exchange Form Styles */
.exchange-form {
    background: linear-gradient(135deg, #0056b3, #28a745);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    margin: 0 auto;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.exchange-form h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.exchange-form p {
    text-align: center;
    font-size: 1.125rem;
}

.exchange-form .form-label {
    font-weight: 600;
    color: #f1f1f1;
}

.exchange-form .form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
}

.exchange-form .form-control:focus {
    border: none;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.exchange-form .input-group-text {
    background-color: #343a40;
    color: #fff;
    border: none;
}

.exchange-form .btn {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.exchange-form .btn:hover {
    background-color: #0056b3;
}

/* Staking Page Styles */
.staking-container {
    padding: 3rem;
    border-radius: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.staking-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
}

.staking-header p {
    font-size: 1.25rem;
    color: #343a40;
}

/* Input Groups */
.input-group {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.input-group .form-control {
    border: none;
    box-shadow: none;
}

.input-group .input-group-text {
    background-color: #0056b3;
    color: #ffffff;
    border: none;
}

.form-check-inline {
    margin: 0 1rem;
}

.form-check {
    margin: 1rem 0;
}

.form-check-label {
    font-size: 1rem;
    color: #343a40;
}

/* How It Works Cards */
.step-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-card i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.step-card h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social-tasks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.task-card {
    background-color: #343a40;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    text-align: center;
    width: 300px;
    max-width: 300px;
}

.task-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.step-card p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Container Styles */
.container {
    max-width: 100% !important;
    margin: 0 auto;
}

/* Flexbox Container */
.cashout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Card Styles */
.cashout-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
    display: flex;
    flex-direction: column;
}

.cashout-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.img-hover {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .cashout-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .stat-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #343a40;
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
}

.contact-form .form-label {
    font-weight: 500;
    color: #495057;
}

.contact-form .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.contact-details {
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 15px;
}

.contact-info {
    flex: 1;
}

.contact-type {
    font-weight: 600;
    color: #495057;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0056b3;
}

/* Stat Item Styling */
.stat-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.5rem);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Container für responsive Tabellen */
.table-container {
    overflow-x: auto;
}

.table-container .table {
    width: 100%;
    border-collapse: collapse;
}

.table-container .table thead th,
.table-container .table tbody td {
    white-space: nowrap;
}

.table-container .table thead th {
    color: #495057;
}

.cursor-pointer {
    cursor: pointer;
}

/* Verblasster Hintergrund für die Staking-Seite */
.staking-wrapper {
    background: linear-gradient(135deg, #0056b3, #28a745);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Optimierung der Formulareingabegruppen */
.input-group .form-control,
.input-group .input-group-text {
    border-radius: 0.5rem;
}

/* Verbesserte Stile für die Tabelle */
.table-responsive {
    margin-top: 2rem;
}

/* Custom styles for Rewarded Videos page */
.rewarded-videos-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rewarded-videos-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.rewarded-videos-header p {
    font-size: 1.2rem;
    color: #666;
}

.rewarded-videos-info {
    background-color: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.rewarded-videos-info h3 {
    color: #007bff;
    font-size: 1.5rem;
}

.rewarded-videos-info p {
    color: #555;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 1.25rem;
    padding: 10px 30px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
